aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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