# HG changeset patch # User Karl Heuer # Date 928521541 0 # Node ID adcead6b7ce148934b5ad8521cda2617fa73a6cf # Parent d2cb43703bfb548a2ba129790561e01e4065b01a 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. diff -r d2cb43703bfb -r adcead6b7ce1 lisp/textmodes/refbib.el --- a/lisp/textmodes/refbib.el Fri Jun 04 18:36:35 1999 +0000 +++ b/lisp/textmodes/refbib.el Fri Jun 04 18:39:01 1999 +0000 @@ -670,8 +670,8 @@ (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 @@ 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 @@ 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 @@ (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 @@ (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