# HG changeset patch # User Sam Steingold # Date 1006884209 0 # Node ID 83f879e8667556ac63001c682b836dac2f6e7c75 # Parent 64ee9a4a698e801e2be008707f29598b34d6129e Converted backquote to the new style (in a string). diff -r 64ee9a4a698e -r 83f879e86675 lisp/ChangeLog --- a/lisp/ChangeLog Tue Nov 27 18:00:53 2001 +0000 +++ b/lisp/ChangeLog Tue Nov 27 18:03:29 2001 +0000 @@ -8,6 +8,7 @@ * term/sun-mouse.el, textmodes/artist.el: Converted backquote to the new style. * mouse.el, reposition.el: Likewise (in comments). + * expand.el: Likewise (in a string). 2001-11-27 Richard M. Stallman diff -r 64ee9a4a698e -r 83f879e86675 lisp/expand.el --- a/lisp/expand.el Tue Nov 27 18:00:53 2001 +0000 +++ b/lisp/expand.el Tue Nov 27 18:03:29 2001 +0000 @@ -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 @@ (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)