summaryrefslogtreecommitdiff
path: root/lisp/expand.el
diff options
context:
space:
mode:
authorSam Steingold <sds@gnu.org>2001-11-27 18:03:29 +0000
committerSam Steingold <sds@gnu.org>2001-11-27 18:03:29 +0000
commit646adf9009fbd5cda92d6525d4d96d51c44274a6 (patch)
treef83db79fced806cfebcbe13b588f24f1fe4b9c53 /lisp/expand.el
parentb2013aad9bdfc147a7351c058cbf672bc5bdcbcc (diff)
downloademacs-646adf9009fbd5cda92d6525d4d96d51c44274a6.tar.gz
Converted backquote to the new style (in a string).
Diffstat (limited to 'lisp/expand.el')
-rw-r--r--lisp/expand.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/expand.el b/lisp/expand.el
index 4c1daa430ea..bb024e5866b 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 <jaalto@tre.tele.nokia.fi>
(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)