]> git.eshelyaron.com Git - emacs.git/commitdiff
(proced-mode, proced): Add \\<proced-mode-map> to docstrings.
authorJuri Linkov <juri@jurta.org>
Sat, 19 Jul 2008 23:57:12 +0000 (23:57 +0000)
committerJuri Linkov <juri@jurta.org>
Sat, 19 Jul 2008 23:57:12 +0000 (23:57 +0000)
lisp/ChangeLog
lisp/proced.el

index 1ba07db5f5ac0776cdc9e7a2d2b63397f3fe0333..cee9364d337edb0b7fdc0b18890315d6dd358011 100644 (file)
@@ -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.
index fa99eb25d04ec4086f0ce5a316310e589eef3fdb..c7fc6344895a8790d076899805864ba21fa60473 100644 (file)
@@ -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'.