Variable: expand-sample-lisp-mode-expand-list
expand-sample-lisp-mode-expand-list is a variable defined in
expand.el.gz.
Value
(("defu" "(defun ()\n \"\"\n (interactive)\n (let* (\n )\n \n ))"
(8 11 16 32 43 59))
("defs" "(defsubst ()\n \"\"\n (interactive)\n )"
(11 14 19 23 39))
("defm" "(defmacro ()\n \"\"\n `( \n ))"
(11 13 18 25))
("defa" "(defadvice (around act)\n \"\"\n \n )"
(12 22 32 36))
("defc" "(defconst nil\n \"\")\n"
(11 13 20))
("defv" "(defvar nil\n \"\")\n"
(9 11 18))
("let" "(let* (\n)\n "
(8 13))
("sav" "(save-excursion\n \n)"
(18))
("aut" "(autoload ' \"\" t t)\n"
(12 14)))
Documentation
Expansions for Lisp mode. See expand-add-abbrevs.
Source Code
;; Defined in /usr/src/emacs/lisp/expand.el.gz
;; lisp example from Jari Aalto <jaalto@tre.tele.nokia.fi>
(defconst expand-sample-lisp-mode-expand-list
(list
(list
"defu"
(concat
"(defun ()\n"
" \"\"\n"
" (interactive)\n"
" (let* (\n"
" )\n"
" \n"
" ))")
(list 8 11 16 32 43 59))
(list
"defs"
(concat
"(defsubst ()\n"
" \"\"\n"
" (interactive)\n"
" )")
(list 11 14 19 23 39))
(list
"defm"
(concat
"(defmacro ()\n"
" \"\"\n"
" `( \n"
" ))")
(list 11 13 18 25))
(list
"defa"
(concat
"(defadvice (around act)\n"
" \"\"\n"
" \n"
" )")
(list 12 22 32 36))
(list
"defc"
"(defconst nil\n \"\")\n"
(list 11 13 20))
(list
"defv"
"(defvar nil\n \"\")\n"
(list 9 11 18))
(list
"let"
"(let* (\n)\n "
(list 8 13))
(list
"sav"
"(save-excursion\n \n)"
(list 18))
(list
"aut"
"(autoload ' \"\" t t)\n"
(list 12 14))
)
"Expansions for Lisp mode. See `expand-add-abbrevs'.")