X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/70f1b1827a787d215c8f722f1ee35fa14d2bea84..4342e957a2521bbe9b574871e3bbd60d63c93461:/lisp/expand.el diff --git a/lisp/expand.el b/lisp/expand.el index 4c1daa430e..2e2767289c 100644 --- a/lisp/expand.el +++ b/lisp/expand.el @@ -47,7 +47,7 @@ ;; ("default" "default:\n\nbreak;" 10) ;; ("main" "int\nmain(int argc, char * argv[])\n{\n\n}\n" 37)) ;; "Expansions for C mode") -;; +;; ;; and enter Abbrev mode with the following hook : ;; ;; (add-hook 'c-mode-hook (function (lambda () @@ -144,7 +144,7 @@ (concat "(defmacro ()\n" " \"\"\n" - " (` \n" + " `( \n" " ))") (list 11 13 18 25)) @@ -184,7 +184,7 @@ ) "Expansions for Lisp mode. See `expand-add-abbrevs'.") - + ;; perl example from Jari Aalto (defconst expand-sample-perl-mode-expand-list (list @@ -496,7 +496,7 @@ This is used only in conjunction with `expand-add-abbrevs'." (defun expand-skeleton-end-hook () (if skeleton-positions (setq expand-list skeleton-positions))) - + (add-hook 'skeleton-end-hook (function expand-skeleton-end-hook)) (provide 'expand) @@ -504,4 +504,5 @@ This is used only in conjunction with `expand-add-abbrevs'." ;; run load hooks (run-hooks 'expand-load-hook) +;;; arch-tag: fee53e9e-30e3-4ef3-b191-9785e1f8e885 ;;; expand.el ends here