aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2000-11-03 22:29:27 +0000
committerStefan Monnier2000-11-03 22:29:27 +0000
commit3392cf05d77488c722136b65cd88df2518783af1 (patch)
tree0a12bd0ffd94e9c20259c477b1dfd87747e04180
parentd918e2dcea9c4916245c10737133de95dcb75fa0 (diff)
downloademacs-3392cf05d77488c722136b65cd88df2518783af1.tar.gz
emacs-3392cf05d77488c722136b65cd88df2518783af1.zip
(msb-mode): Drop unneeded positional args.
-rw-r--r--lisp/msb.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/msb.el b/lisp/msb.el
index 14b9784b3b8..2dadb34abd9 100644
--- a/lisp/msb.el
+++ b/lisp/msb.el
@@ -369,8 +369,8 @@ This is instead of the groups in `msb-menu-cond'."
369 :set 'msb-custom-set 369 :set 'msb-custom-set
370 :group 'msb) 370 :group 'msb)
371 371
372(defcustom msb-after-load-hooks nil 372(defcustom msb-after-load-hook nil
373 "Hooks to be run after the msb package has been loaded." 373 "Hook run after the msb package has been loaded."
374 :type 'hook 374 :type 'hook
375 :set 'msb-custom-set 375 :set 'msb-custom-set
376 :group 'msb) 376 :group 'msb)
@@ -1141,7 +1141,6 @@ variable `msb-menu-cond'."
1141With arg, turn Msb mode on if and only if arg is positive. 1141With arg, turn Msb mode on if and only if arg is positive.
1142This mode overrides the binding(s) of `mouse-buffer-menu' to provide a 1142This mode overrides the binding(s) of `mouse-buffer-menu' to provide a
1143different buffer menu using the function `msb'." 1143different buffer menu using the function `msb'."
1144 nil nil msb-mode-map
1145 :global t 1144 :global t
1146 (if msb-mode 1145 (if msb-mode
1147 (progn 1146 (progn
@@ -1155,6 +1154,6 @@ different buffer menu using the function `msb'."
1155 (msb-mode 0)) 1154 (msb-mode 0))
1156 1155
1157(provide 'msb) 1156(provide 'msb)
1158(eval-after-load 'msb (run-hooks 'msb-after-load-hooks)) 1157(eval-after-load 'msb (run-hooks 'msb-after-load-hook 'msb-after-load-hooks))
1159 1158
1160;;; msb.el ends here 1159;;; msb.el ends here