1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-26 10:49:33 +00:00

(top-level): Quote second arg to

`eval-after-load'.
This commit is contained in:
Kai Großjohann 2003-04-02 10:41:40 +00:00
parent 64453f32d0
commit 6d91a595e0
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2003-04-02 Kai Gro,A_(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.

View 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)