lukelee pushed a commit to branch master
in repository elpa.
commit a5773131e29df6492d8e46f6457f850ecbae79ed
Author: Kai Großjohann <[email protected]>
Date: Wed Apr 2 10:41:40 2003 +0000
(top-level): Quote second arg to `eval-after-load'.
---
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 055c8e5..0f19d9e 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)