aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Großjohann2003-04-02 10:41:40 +0000
committerKai Großjohann2003-04-02 10:41:40 +0000
commit6d91a595e02c8fc4d29daf6caf2dceb3a6018163 (patch)
treedb599bf88eca496b1fcf667b1bb97d0393615833
parent64453f32d02ab3e2066ee8230def550fd125d299 (diff)
downloademacs-6d91a595e02c8fc4d29daf6caf2dceb3a6018163.tar.gz
emacs-6d91a595e02c8fc4d29daf6caf2dceb3a6018163.zip
(top-level): Quote second arg to
`eval-after-load'.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/emulation/crisp.el6
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 79b93ec904e..aa138bc6e68 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12003-04-02 Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net>
2
3 * emulation/crisp.el (top-level): Quote second arg to
4 `eval-after-load'.
5
12003-04-02 Miles Bader <miles@gnu.org> 62003-04-02 Miles Bader <miles@gnu.org>
2 7
3 * scroll-bar.el (scroll-bar-mode): Correctly specify `nil' choice. 8 * scroll-bar.el (scroll-bar-mode): Correctly specify `nil' choice.
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."
387 387
388;; Interaction with other packages. 388;; Interaction with other packages.
389(eval-after-load 'cua 389(eval-after-load 'cua
390 (progn 390 '(progn
391 (add-to-list 'cua--standard-movement-commands 'crisp-home) 391 (add-to-list 'cua--standard-movement-commands 'crisp-home)
392 (add-to-list 'cua--standard-movement-commands 'crisp-end))) 392 (add-to-list 'cua--standard-movement-commands 'crisp-end)))
393 393
394(run-hooks 'crisp-load-hook) 394(run-hooks 'crisp-load-hook)
395(provide 'crisp) 395(provide 'crisp)