diff options
Diffstat (limited to 'lisp/vc')
-rw-r--r-- | lisp/vc/add-log.el | 6 | ||||
-rw-r--r-- | lisp/vc/ediff-diff.el | 2 | ||||
-rw-r--r-- | lisp/vc/ediff-util.el | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/lisp/vc/add-log.el b/lisp/vc/add-log.el index 3149764d331..e5aead2309f 100644 --- a/lisp/vc/add-log.el +++ b/lisp/vc/add-log.el @@ -578,7 +578,7 @@ It takes the same format as the TZ argument of `set-time-zone-rule'. If nil, use local time. If t, use universal time.") (put 'add-log-time-zone-rule 'safe-local-variable - '(lambda (x) (or (booleanp x) (stringp x)))) + (lambda (x) (or (booleanp x) (stringp x)))) (defun add-log-iso8601-time-zone (&optional time) (let* ((utc-offset (or (car (current-time-zone time)) 0)) @@ -1051,8 +1051,8 @@ Runs `change-log-mode-hook'. (set (make-local-variable 'fill-indent-according-to-mode) t) ;; Avoid that filling leaves behind a single "*" on a line. (add-hook 'fill-nobreak-predicate - '(lambda () - (looking-back "^\\s *\\*\\s *" (line-beginning-position))) + (lambda () + (looking-back "^\\s *\\*\\s *" (line-beginning-position))) nil t) (set (make-local-variable 'indent-line-function) 'change-log-indent) (set (make-local-variable 'tab-always-indent) nil) diff --git a/lisp/vc/ediff-diff.el b/lisp/vc/ediff-diff.el index 078947e8501..20c83429ced 100644 --- a/lisp/vc/ediff-diff.el +++ b/lisp/vc/ediff-diff.el @@ -50,7 +50,7 @@ Must produce output compatible with Unix's diff3 program." ;; The following functions must precede all defcustom-defined variables. -(fset 'ediff-set-actual-diff-options '(lambda () nil)) +(fset 'ediff-set-actual-diff-options (lambda () nil)) (defcustom ediff-shell (cond ((memq system-type '(ms-dos windows-nt)) diff --git a/lisp/vc/ediff-util.el b/lisp/vc/ediff-util.el index 92f52157cb2..40ffea624fb 100644 --- a/lisp/vc/ediff-util.el +++ b/lisp/vc/ediff-util.el @@ -1682,7 +1682,7 @@ the width of the A/B/C windows." 'ediff-get-lines-to-region-start) ((eq op 'scroll-up) 'ediff-get-lines-to-region-end) - (t '(lambda (a b c) 0)))) + (t (lambda (a b c) 0)))) (max-lines (max (funcall func 'A n ctl-buf) (funcall func 'B n ctl-buf) (if (ediff-buffer-live-p ediff-buffer-C) |