* lisp/finder.el (finder-known-keywords, finder-mode-map): Doc fixes.
This commit is contained in:
parent
c295fc18e3
commit
0dab5068ae
2 changed files with 10 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
|||
2014-02-13 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* finder.el (finder-known-keywords, finder-mode-map): Doc fixes.
|
||||
|
||||
2014-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* emulation/cua-base.el (cua-scroll-up, cua-scroll-down): Mark them as
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
;;; finder.el --- topic & keyword-based code finder
|
||||
|
||||
;; Copyright (C) 1992, 1997-1999, 2001-2014 Free Software Foundation,
|
||||
;; Inc.
|
||||
;; Copyright (C) 1992, 1997-1999, 2001-2014 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
|
||||
;; Created: 16 Jun 1992
|
||||
|
@ -73,7 +72,9 @@
|
|||
(tools . "programming tools")
|
||||
(unix . "UNIX feature interfaces and emulators")
|
||||
(vc . "version control")
|
||||
(wp . "word processing")))
|
||||
(wp . "word processing"))
|
||||
"Association list of the standard \"Keywords:\" headers.
|
||||
Each element has the form (KEYWORD . DESCRIPTION).")
|
||||
|
||||
(defvar finder-mode-map
|
||||
(let ((map (make-sparse-keymap))
|
||||
|
@ -103,7 +104,8 @@
|
|||
(define-key menu-map [finder-select]
|
||||
'(menu-item "Select" finder-select
|
||||
:help "Select item on current line in a finder buffer"))
|
||||
map))
|
||||
map)
|
||||
"Keymap used in `finder-mode'.")
|
||||
|
||||
(defvar finder-mode-syntax-table
|
||||
(let ((st (make-syntax-table emacs-lisp-mode-syntax-table)))
|
||||
|
|
Loading…
Add table
Reference in a new issue