1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

(pages-directory-mode): Undo previous change.

This commit is contained in:
Richard M. Stallman 2002-08-09 16:41:01 +00:00
parent 16236388b2
commit f8da45ad01
2 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2002-08-09 Richard M. Stallman <rms@gnu.org>
* textmodes/page-ext.el (pages-directory-mode): Undo previous change.
* simple.el (set-variable): Give locality status in prompt.
2002-08-09 Benjamin Rutt <rutt@cis.ohio-state.edu>

View File

@ -694,11 +694,16 @@ Used by `pages-directory' function."
(terpri))
(end-of-line 1)))
(define-derived-mode pages-directory-mode nil "Pages-Directory"
(defun pages-directory-mode ()
"Mode for handling the pages-directory buffer.
Move point to one of the lines in this buffer, then use \\[pages-directory-goto] to go
to the same line in the pages buffer."
(kill-all-local-variables)
(use-local-map pages-directory-map)
(setq major-mode 'pages-directory-mode)
(setq mode-name "Pages-Directory")
(make-local-variable 'pages-buffer)
(make-local-variable 'pages-pos-list)
(make-local-variable 'pages-directory-buffer-narrowing-p))