diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-09-07 13:33:09 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-09-07 13:33:09 +0000 |
commit | 5421b8996bf223651b97448865b63764cd7fe9c4 (patch) | |
tree | 8b7e3ad25c1332b93ab1d7f1f00519e9046a1055 /lisp/locate.el | |
parent | c9e74cd4be9caeb8c1b3d43f4f5b708184e9aa06 (diff) | |
download | emacs-5421b8996bf223651b97448865b63764cd7fe9c4.tar.gz |
(locate-insert-header): Remove unnecessary
whitespaces.
Diffstat (limited to 'lisp/locate.el')
-rw-r--r-- | lisp/locate.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/locate.el b/lisp/locate.el index ceb29458864..80dc7af7a21 100644 --- a/lisp/locate.el +++ b/lisp/locate.el @@ -1,6 +1,6 @@ ;;; locate.el --- interface to the locate command -;; Copyright (C) 1996, 1998 Free Software Foundation, Inc. +;; Copyright (C) 1996, 1998, 2001 Free Software Foundation, Inc. ;; Author: Peter Breton <pbreton@cs.umb.edu> ;; Keywords: unix files @@ -404,9 +404,9 @@ shown; this is often useful to constrain a big search." (append (list locate-current-filter) locate-format-args))) (setq locate-format-string - (concat locate-format-string ": \n\n") + (concat locate-format-string ":\n\n") locate-regexp-match - (concat locate-regexp-match ": \n")) + (concat locate-regexp-match ":\n")) (insert (apply 'format locate-format-string (reverse locate-format-args))) |