* files.el (top-level): Require `cl' when compiling.
This commit is contained in:
parent
8f09a02fc8
commit
79f01fa76c
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2009-09-07 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* files.el (top-level): Require `cl' when compiling.
|
||||
|
||||
2009-09-07 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* files.el (auto-mode-alist): Use delphi-mode for .dpr files.
|
||||
|
|
|
@ -29,6 +29,8 @@
|
|||
|
||||
;;; Code:
|
||||
|
||||
(eval-when-compile (require 'cl))
|
||||
|
||||
(defvar font-lock-keywords)
|
||||
|
||||
(defgroup backup nil
|
||||
|
@ -722,7 +724,7 @@ one or more of those symbols."
|
|||
(read-file-name-internal string nil action)))
|
||||
((eq (car-safe action) 'boundaries)
|
||||
(let ((suffix (cdr action)))
|
||||
(list* 'boundaries
|
||||
(list* 'boundaries
|
||||
(length (file-name-directory string))
|
||||
(let ((x (file-name-directory suffix)))
|
||||
(if x (1- (length x)) (length suffix))))))
|
||||
|
|
Loading…
Add table
Reference in a new issue