summaryrefslogtreecommitdiff
path: root/lisp/locate.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2009-09-11 03:40:35 +0000
committerGlenn Morris <rgm@gnu.org>2009-09-11 03:40:35 +0000
commitdccbf237894a075839fcf718edf3959821c88da5 (patch)
treea7bdc205fd1adfc287fd9648269c40a86dbc2690 /lisp/locate.el
parenta87b98ce47010b4eec8f6982592d111fc611f388 (diff)
downloademacs-dccbf237894a075839fcf718edf3959821c88da5.tar.gz
(top-level): Always require dired.
(locate-mode-map): Initialize inside the defvar.
Diffstat (limited to 'lisp/locate.el')
-rw-r--r--lisp/locate.el46
1 files changed, 18 insertions, 28 deletions
diff --git a/lisp/locate.el b/lisp/locate.el
index d685097447c..f08847d4c4c 100644
--- a/lisp/locate.el
+++ b/lisp/locate.el
@@ -1,7 +1,7 @@
;;; locate.el --- interface to the locate command
-;; Copyright (C) 1996, 1998, 2001, 2002, 2003, 2004,
-;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+;; Copyright (C) 1996, 1998, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
+;; 2008, 2009 Free Software Foundation, Inc.
;; Author: Peter Breton <pbreton@cs.umb.edu>
;; Keywords: unix files
@@ -107,8 +107,7 @@
;;; Code:
-(eval-when-compile
- (require 'dired))
+(require 'dired)
;; Variables
@@ -363,31 +362,22 @@ except that FILTER is not optional."
(goto-char (point-min))
(keep-lines filter))
-(defvar locate-mode-map nil
+(defvar locate-mode-map
+ (let ((map (copy-keymap dired-mode-map)))
+ ;; Undefine Useless Dired Menu bars
+ (define-key map [menu-bar Dired] 'undefined)
+ (define-key map [menu-bar subdir] 'undefined)
+ (define-key map [menu-bar mark executables] 'undefined)
+ (define-key map [menu-bar mark directory] 'undefined)
+ (define-key map [menu-bar mark directories] 'undefined)
+ (define-key map [menu-bar mark symlinks] 'undefined)
+ (define-key map [M-mouse-2] 'locate-mouse-view-file)
+ (define-key map "\C-c\C-t" 'locate-tags)
+ (define-key map "l" 'locate-do-redisplay)
+ (define-key map "U" 'dired-unmark-all-files)
+ (define-key map "V" 'locate-find-directory)
+ map)
"Local keymap for Locate mode buffers.")
-(if locate-mode-map
- nil
-
- (require 'dired)
-
- (setq locate-mode-map (copy-keymap dired-mode-map))
-
- ;; Undefine Useless Dired Menu bars
- (define-key locate-mode-map [menu-bar Dired] 'undefined)
- (define-key locate-mode-map [menu-bar subdir] 'undefined)
-
- (define-key locate-mode-map [menu-bar mark executables] 'undefined)
- (define-key locate-mode-map [menu-bar mark directory] 'undefined)
- (define-key locate-mode-map [menu-bar mark directories] 'undefined)
- (define-key locate-mode-map [menu-bar mark symlinks] 'undefined)
-
- (define-key locate-mode-map [M-mouse-2] 'locate-mouse-view-file)
- (define-key locate-mode-map "\C-c\C-t" 'locate-tags)
-
- (define-key locate-mode-map "l" 'locate-do-redisplay)
- (define-key locate-mode-map "U" 'dired-unmark-all-files)
- (define-key locate-mode-map "V" 'locate-find-directory)
-)
;; This variable is used to indent the lines and then to search for
;; the file name