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 | 6d91a595e02c8fc4d29daf6caf2dceb3a6018163 (patch) | |
tree | db599bf88eca496b1fcf667b1bb97d0393615833 /lisp/emulation | |
parent | 64453f32d02ab3e2066ee8230def550fd125d299 (diff) | |
download | emacs-6d91a595e02c8fc4d29daf6caf2dceb3a6018163.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) |