diff options
author | Karl Heuer <kwzh@gnu.org> | 1999-06-04 18:39:01 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1999-06-04 18:39:01 +0000 |
commit | 1fc4747e4ee6594bfd5ac6bdede9036c4a72ac10 (patch) | |
tree | 651cac16964f89ffeeef483d6ec0849a6e641277 /lisp/textmodes/refbib.el | |
parent | e011fd6b5c1f758557ea5f7e531a35c3fb941295 (diff) | |
download | emacs-1fc4747e4ee6594bfd5ac6bdede9036c4a72ac10.tar.gz |
Don't print any messages or display
a buffer when loading the library.
(r2b-help): Doc fix.
(r2b-help-message): Update the documentation.
(r2b-load-quietly): Variable deleted.
(r2b-convert-buffer): Doc fix.
Diffstat (limited to 'lisp/textmodes/refbib.el')
-rw-r--r-- | lisp/textmodes/refbib.el | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/lisp/textmodes/refbib.el b/lisp/textmodes/refbib.el index a2a820002c1..a57f6c25859 100644 --- a/lisp/textmodes/refbib.el +++ b/lisp/textmodes/refbib.el @@ -670,8 +670,8 @@ do \"M-x r2b-help\" for more info." (defun r2b-convert-buffer (output-name) - "Transform current buffer and append to buffer OUTPUT; -do \"M-x r2b-help\" for more info." + "Transform current buffer and append to buffer OUTPUT. +Do `M-x r2b-help' for more info." (interactive (list (read-string "Output to buffer: " r2b-out-buf-name))) (save-excursion @@ -687,11 +687,6 @@ do \"M-x r2b-help\" for more info." r2b-out-buf-name r2b-log-name) ) -(defcustom r2b-load-quietly nil - "*Non-nil means don't print help message when loaded." - :type 'boolean - :group 'refbib) - (defvar r2b-help-message " Refer to Bibtex Bibliography Conversion @@ -727,11 +722,6 @@ to text, or substituting bibtex macros. Do M-x describe-variable on r2b-proceedings-list for information on these features. -If you don't want to see this help message when you load this utility, -then include the following line in your .emacs file: - (setq r2b-load-quietly t) -To see this message again, perform - M-x r2b-help Please send bug reports and suggestions to Henry Kautz kautz@research.att.com @@ -739,7 +729,7 @@ Please send bug reports and suggestions to (defun r2b-help () - "Print help message." + "Print help describing the `refbib' package." (interactive) (with-output-to-temp-buffer "*Help*" (princ r2b-help-message) @@ -747,11 +737,7 @@ Please send bug reports and suggestions to (set-buffer standard-output) (help-mode)))) -(if (not r2b-load-quietly) - (r2b-help)) - -(message "r2b loaded") - +(provide 'refbib) (provide 'refer-to-bibtex) ;;; refbib.el ends here |