aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2005-09-09 01:24:59 +0000
committerRichard M. Stallman <[email protected]>2005-09-09 01:24:59 +0000
commitcac9ce0d76e2eaf9ca180a6f3d207a9e2ec3d001 (patch)
tree24d77ea491544865a77b3cb6aed14905d2337461 /lisp
parentc3b8339fd7fcc133af5542e183d2d78c2b563f57 (diff)
(makefile-add-log-defun): Trim the result.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/make-mode.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el
index b833669130..11ae1c66aa 100644
--- a/lisp/progmodes/make-mode.el
+++ b/lisp/progmodes/make-mode.el
@@ -1833,6 +1833,10 @@ If it isn't in one, return nil."
;; Don't keep looking across a blank line or comment.
(looking-at "$\\|#")
(not (zerop (forward-line -1))))))
+ ;; Remove leading and trailing whitespace.
+ (when found
+ (setq found (replace-regexp-in-string "[ \t]+\\'" "" found))
+ (setq found (replace-regexp-in-string "\\`[ \t]+" "" found)))
found)))
(provide 'make-mode)