diff options
author | Ludovic Courtès | 2014-11-04 09:48:42 +0100 |
---|---|---|
committer | Ludovic Courtès | 2014-11-04 09:48:42 +0100 |
commit | 788826ab866112ec139f7fec7aee7a5ad4ac2c7a (patch) | |
tree | 3a871f303b6a2df2a15e0a9283a76ef82d5dcad2 | |
parent | 46e7ecaf95ebee3c3a83b483d5adfd4b1962edb3 (diff) | |
download | skribilo-788826ab866112ec139f7fec7aee7a5ad4ac2c7a.tar.gz skribilo-788826ab866112ec139f7fec7aee7a5ad4ac2c7a.tar.lz skribilo-788826ab866112ec139f7fec7aee7a5ad4ac2c7a.zip |
emacs: Adjust for Emacs 24.4.
* emacs/skribe.el.in (skribe-manuals): Quote lambda with #' instead of
', as recommended by Emacs 24.4.
-rw-r--r-- | emacs/skribe.el.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/emacs/skribe.el.in b/emacs/skribe.el.in index b3794c2..1b8d84a 100644 --- a/emacs/skribe.el.in +++ b/emacs/skribe.el.in @@ -314,10 +314,10 @@ Set this to nil if you don't want a modeline indicator." (t (setq new (cons f new)))))) (let* ((rest (mapcar 'skribe-manuals-menu-entry (sort new - '(lambda (s u) - (string< - (file-name-nondirectory s) - (file-name-nondirectory u)))))) + #'(lambda (s u) + (string< + (file-name-nondirectory s) + (file-name-nondirectory u)))))) (smenu (cond ((and user dir) (append (list (skribe-manuals-menu-entry user) |