From: Kai Großjohann Date: Wed, 2 Apr 2003 10:41:40 +0000 (+0000) Subject: (top-level): Quote second arg to X-Git-Tag: ttn-vms-21-2-B4~10672 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6d91a595e02c8fc4d29daf6caf2dceb3a6018163;p=emacs.git (top-level): Quote second arg to `eval-after-load'. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 79b93ec904e..aa138bc6e68 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2003-04-02 Kai Gro,A_(Bjohann + + * emulation/crisp.el (top-level): Quote second arg to + `eval-after-load'. + 2003-04-02 Miles Bader * 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." ;; 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)