diff options
author | Kai Großjohann <kgrossjo@eu.uu.net> | 2003-04-02 10:41:40 +0000 |
---|---|---|
committer | Kai Großjohann <kgrossjo@eu.uu.net> | 2003-04-02 10:41:40 +0000 |
commit | 505a75fb15b382a35b6657a8b96b842c24d1ca52 (patch) | |
tree | f4ee844eb75f0b4fef9fe0958fad4409410bad20 /lisp/emulation | |
parent | 7b81a487151ca690e7817c1a5b4a7eddabea389d (diff) | |
download | emacs-505a75fb15b382a35b6657a8b96b842c24d1ca52.tar.gz |
(top-level): Quote second arg to
`eval-after-load'.
Diffstat (limited to 'lisp/emulation')
-rw-r--r-- | lisp/emulation/crisp.el | 6 |
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) |