(top-level): Quote second arg to
authorKai Großjohann <kgrossjo@eu.uu.net>
Wed, 2 Apr 2003 10:41:40 +0000 (10:41 +0000)
committerKai Großjohann <kgrossjo@eu.uu.net>
Wed, 2 Apr 2003 10:41:40 +0000 (10:41 +0000)
`eval-after-load'.

lisp/ChangeLog
lisp/emulation/crisp.el

index 79b93ec..aa138bc 100644 (file)
@@ -1,3 +1,8 @@
+2003-04-02  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
+
+       * emulation/crisp.el (top-level): Quote second arg to
+       `eval-after-load'.
+
 2003-04-02  Miles Bader  <miles@gnu.org>
 
        * scroll-bar.el (scroll-bar-mode): Correctly specify `nil' choice.
index 055c8e5..0f19d9e 100644 (file)
@@ -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)