diff options
| author | Glenn Morris | 2011-11-24 00:21:03 -0800 |
|---|---|---|
| committer | Glenn Morris | 2011-11-24 00:21:03 -0800 |
| commit | 3adbe22462f8c670a843494dad84f8f2260a0802 (patch) | |
| tree | af62b3ab8eac6d8e693c2ca50bb51ccc9c9e82be /lisp/lpr.el | |
| parent | 321decc890cabcf8b6ae8d1838fdf343eb899a55 (diff) | |
| download | emacs-3adbe22462f8c670a843494dad84f8f2260a0802.tar.gz emacs-3adbe22462f8c670a843494dad84f8f2260a0802.zip | |
Give some autoloaded things doc-strings.
* lisp/lpr.el (lpr-windows-system, lpr-lp-system):
* lisp/mail/binhex.el (binhex-begin-line):
* lisp/progmodes/grep.el (grep-history, grep-find-history):
* lisp/textmodes/flyspell.el:
* lisp/vc/pcvs-defs.el (cvs-global-menu):
* lisp/vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
* lisp/vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
* lisp/vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
Diffstat (limited to 'lisp/lpr.el')
| -rw-r--r-- | lisp/lpr.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/lpr.el b/lisp/lpr.el index 76c69f3308c..296063549fc 100644 --- a/lisp/lpr.el +++ b/lisp/lpr.el | |||
| @@ -33,11 +33,13 @@ | |||
| 33 | 33 | ||
| 34 | ;;;###autoload | 34 | ;;;###autoload |
| 35 | (defvar lpr-windows-system | 35 | (defvar lpr-windows-system |
| 36 | (memq system-type '(ms-dos windows-nt))) | 36 | (memq system-type '(ms-dos windows-nt)) |
| 37 | "Non-nil if running on MS-DOS or MS Windows.") | ||
| 37 | 38 | ||
| 38 | ;;;###autoload | 39 | ;;;###autoload |
| 39 | (defvar lpr-lp-system | 40 | (defvar lpr-lp-system |
| 40 | (memq system-type '(usg-unix-v hpux irix))) | 41 | (memq system-type '(usg-unix-v hpux irix)) |
| 42 | "Non-nil if running on a system type that uses the \"lp\" command.") | ||
| 41 | 43 | ||
| 42 | 44 | ||
| 43 | (defgroup lpr nil | 45 | (defgroup lpr nil |