]> git.eshelyaron.com Git - emacs.git/commitdiff
Doc fix in eudc-hotlist.el
authorStefan Kangas <stefan@marxist.se>
Mon, 1 Aug 2022 10:14:57 +0000 (12:14 +0200)
committerStefan Kangas <stefan@marxist.se>
Mon, 1 Aug 2022 11:32:34 +0000 (13:32 +0200)
* lisp/net/eudc-hotlist.el (eudc-hotlist-mode): Doc fix; use command
substitution.

lisp/net/eudc-hotlist.el

index d70e0cf4f6364024a21279ac2898a4d9f894543b..458d13fb24de37287a87f92432ef71b8b34b6f9d 100644 (file)
@@ -32,7 +32,6 @@
 
 (require 'eudc)
 
-(defvar eudc-hotlist-menu nil)
 (defvar eudc-hotlist-list-beginning nil)
 
 (defvar-keymap eudc-hotlist-mode-map
 (define-derived-mode eudc-hotlist-mode fundamental-mode "EUDC-Servers"
   "Major mode used to edit the hotlist of servers.
 
-These are the special commands of this mode:
-    a -- Add a new server to the list.
-    d -- Delete the server at point from the list.
-    s -- Select the server at point.
-    t -- Transpose the server at point and the previous one
-    q -- Commit the changes and quit.
-    x -- Quit without committing the changes."
+These are the special commands of this mode:\\<eudc-hotlist-mode-map>
+    \\[eudc-hotlist-add-server] -- Add a new server to the list.
+    \\[eudc-hotlist-delete-server] -- Delete the server at point from the list.
+    \\[eudc-hotlist-select-server] -- Select the server at point.
+    \\[eudc-hotlist-transpose-servers] -- Transpose the server at point and the previous one
+    \\[eudc-hotlist-quit-edit] -- Commit the changes and quit.
+    \\[kill-current-buffer] -- Quit without committing the changes."
   (setq buffer-read-only t))
 
 ;;;###autoload