summaryrefslogtreecommitdiff
path: root/lisp/emulation
diff options
context:
space:
mode:
authorKai Großjohann <kgrossjo@eu.uu.net>2003-04-02 10:41:40 +0000
committerKai Großjohann <kgrossjo@eu.uu.net>2003-04-02 10:41:40 +0000
commit505a75fb15b382a35b6657a8b96b842c24d1ca52 (patch)
treef4ee844eb75f0b4fef9fe0958fad4409410bad20 /lisp/emulation
parent7b81a487151ca690e7817c1a5b4a7eddabea389d (diff)
downloademacs-505a75fb15b382a35b6657a8b96b842c24d1ca52.tar.gz
(top-level): Quote second arg to
`eval-after-load'.
Diffstat (limited to 'lisp/emulation')
-rw-r--r--lisp/emulation/crisp.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emulation/crisp.el b/lisp/emulation/crisp.el
index 055c8e58de0..0f19d9e4cc4 100644
--- a/lisp/emulation/crisp.el
+++ b/lisp/emulation/crisp.el
@@ -387,9 +387,9 @@ With ARG, turn CRiSP mode on if ARG is positive, off otherwise."
;; Interaction with other packages.
(eval-after-load 'cua
- (progn
- (add-to-list 'cua--standard-movement-commands 'crisp-home)
- (add-to-list 'cua--standard-movement-commands 'crisp-end)))
+ '(progn
+ (add-to-list 'cua--standard-movement-commands 'crisp-home)
+ (add-to-list 'cua--standard-movement-commands 'crisp-end)))
(run-hooks 'crisp-load-hook)
(provide 'crisp)