changeset 24811:adcead6b7ce1

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.
author Karl Heuer <kwzh@gnu.org>
date Fri, 04 Jun 1999 18:39:01 +0000
parents d2cb43703bfb
children 4bdc30f27628
files lisp/textmodes/refbib.el
diffstat 1 files changed, 4 insertions(+), 18 deletions(-) [+]
line wrap: on
line diff
--- 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