(proced-mode, proced): Add \\<proced-mode-map> to docstrings.
This commit is contained in:
parent
aac420937f
commit
008c22f2dc
2 changed files with 26 additions and 4 deletions
|
@ -1,3 +1,24 @@
|
|||
2008-07-19 Juri Linkov <juri@jurta.org>
|
||||
|
||||
* startup.el (fancy-startup-text): Move the line "To quit
|
||||
a partially entered command, type Control-g" a few lines below
|
||||
to be after the line "To start". Add text "at gnu.org" to
|
||||
"Overview of Emacs features".
|
||||
|
||||
* dired.el (dired-mode-map): Fix menu text of
|
||||
image-dired-display-thumbs.
|
||||
|
||||
* image-dired.el (image-dired-cmd-create-thumbnail-options)
|
||||
(image-dired-cmd-create-temp-image-options)
|
||||
(image-dired-cmd-create-standard-thumbnail-command): Add > to the
|
||||
ImageMagick command line to change the dimensions of the image
|
||||
only if its width or height exceeds the geometry specification.
|
||||
|
||||
* longlines.el: Add coding cookie utf-8 for the pilcrow sign.
|
||||
|
||||
* proced.el (proced-mode, proced): Add \\<proced-mode-map>
|
||||
to docstrings.
|
||||
|
||||
2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
|
||||
* term/ns-win.el (ns-ps-print-menu-map): Fix typo pointed out by
|
||||
Vinicius Jose Latorre.
|
||||
|
|
|
@ -307,7 +307,7 @@ JUSTIFY is 'left or 'right for left or right-justified output of ps(1).")
|
|||
|
||||
(define-derived-mode proced-mode nil "Proced"
|
||||
"Mode for displaying UNIX system processes and sending signals to them.
|
||||
Type \\[proced-mark-process] to mark a process for later commands.
|
||||
Type \\<proced-mode-map>\\[proced-mark] to mark a process for later commands.
|
||||
Type \\[proced-send-signal] to send signals to marked processes.
|
||||
|
||||
\\{proced-mode-map}"
|
||||
|
@ -327,7 +327,7 @@ Type \\[proced-send-signal] to send signals to marked processes.
|
|||
;;;###autoload
|
||||
(defun proced (&optional arg)
|
||||
"Mode for displaying UNIX system processes and sending signals to them.
|
||||
Type \\[proced-mark-process] to mark a process for later commands.
|
||||
Type \\<proced-mode-map>\\[proced-mark] to mark a process for later commands.
|
||||
Type \\[proced-send-signal] to send signals to marked processes.
|
||||
|
||||
If invoked with optional ARG the window displaying the process
|
||||
|
@ -346,8 +346,9 @@ information will be displayed but not selected.
|
|||
(if arg
|
||||
(display-buffer buffer)
|
||||
(pop-to-buffer buffer)
|
||||
(message (substitute-command-keys
|
||||
"type \\[quit-window] to quit, \\[proced-help] for help")))))
|
||||
(message
|
||||
(substitute-command-keys
|
||||
"Type \\<proced-mode-map>\\[quit-window] to quit, \\[proced-help] for help")))))
|
||||
|
||||
(defun proced-next-line (arg)
|
||||
"Move down lines then position at `proced-goal-column'.
|
||||
|
|
Loading…
Add table
Reference in a new issue