diff options
| author | Chong Yidong | 2010-02-21 16:05:13 -0500 |
|---|---|---|
| committer | Chong Yidong | 2010-02-21 16:05:13 -0500 |
| commit | b660eb70f1e73146a769f81530ea262e90179d7b (patch) | |
| tree | aa84ace72f821a4bd3e0e642c3b1757c19a543de | |
| parent | 676cae9f089edca7b8f7e28b1348c95d51fd65c4 (diff) | |
| download | emacs-b660eb70f1e73146a769f81530ea262e90179d7b.tar.gz emacs-b660eb70f1e73146a769f81530ea262e90179d7b.zip | |
Minor doc fixes.
* htmlfontify.el (htmlfontify): Doc fix.
* eshell/eshell.el (eshell): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/eshell/eshell.el | 9 | ||||
| -rw-r--r-- | lisp/htmlfontify.el | 5 |
3 files changed, 10 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0e863bd8ce7..40683a9c769 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2010-02-21 Chong Yidong <cyd@stupidchicken.com> | 1 | 2010-02-21 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 2 | ||
| 3 | * htmlfontify.el (htmlfontify): Doc fix. | ||
| 4 | |||
| 5 | * eshell/eshell.el (eshell): Doc fix. | ||
| 6 | |||
| 3 | * startup.el (fancy-about-screen): In mode-line, apply | 7 | * startup.el (fancy-about-screen): In mode-line, apply |
| 4 | mode-line-buffer-id face only to the buffer name (Bug#5613). | 8 | mode-line-buffer-id face only to the buffer name (Bug#5613). |
| 5 | 9 | ||
diff --git a/lisp/eshell/eshell.el b/lisp/eshell/eshell.el index 9a4874614ce..74f65d2fe55 100644 --- a/lisp/eshell/eshell.el +++ b/lisp/eshell/eshell.el | |||
| @@ -229,11 +229,10 @@ | |||
| 229 | (require 'esh-mode) | 229 | (require 'esh-mode) |
| 230 | 230 | ||
| 231 | (defgroup eshell nil | 231 | (defgroup eshell nil |
| 232 | "Eshell is a command shell implemented entirely in Emacs Lisp. It | 232 | "A command shell implemented entirely in Emacs Lisp. |
| 233 | invokes no external processes beyond those requested by the user. It | 233 | It invokes no external processes beyond those requested by the |
| 234 | is intended to be a functional replacement for command shells such as | 234 | user, and is intended to be a functional replacement for command |
| 235 | bash, zsh, rc, 4dos; since Emacs itself is capable of handling most of | 235 | shells such as bash, zsh, rc, 4dos." |
| 236 | the tasks accomplished by such tools." | ||
| 237 | :tag "The Emacs shell" | 236 | :tag "The Emacs shell" |
| 238 | :link '(info-link "(eshell)Top") | 237 | :link '(info-link "(eshell)Top") |
| 239 | :version "21.1" | 238 | :version "21.1" |
diff --git a/lisp/htmlfontify.el b/lisp/htmlfontify.el index ebd53c1c09d..dbf5cea7fc8 100644 --- a/lisp/htmlfontify.el +++ b/lisp/htmlfontify.el | |||
| @@ -176,10 +176,9 @@ main-content <=MAIN_CONTENT;\\n\" rtfm-section file style rtfm-section file)) | |||
| 176 | (htmlfontify-copy-and-link-dir srcdir destdir \".src\" \".html\")))") | 176 | (htmlfontify-copy-and-link-dir srcdir destdir \".src\" \".html\")))") |
| 177 | 177 | ||
| 178 | (defgroup htmlfontify nil | 178 | (defgroup htmlfontify nil |
| 179 | "Copy and convert buffers and files to HTML, adding hyperlinks between | 179 | "Convert buffers and files to HTML." |
| 180 | files (driven by etags) if requested.\n | ||
| 181 | See also `htmlfontify-manual'." | ||
| 182 | :group 'applications | 180 | :group 'applications |
| 181 | :link '(variable-link htmlfontify-manual) | ||
| 183 | :prefix "hfy-") | 182 | :prefix "hfy-") |
| 184 | 183 | ||
| 185 | (defcustom hfy-page-header 'hfy-default-header | 184 | (defcustom hfy-page-header 'hfy-default-header |