diff options
| author | Glenn Morris | 2010-04-16 19:07:48 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-04-16 19:07:48 -0700 |
| commit | 0433ffa6c7921dbcc7fa7f7b9542586a1597bc53 (patch) | |
| tree | cda0e698fde782d09b27815ada4168b1ed47a74e | |
| parent | 8ecd59ca5a007d60a42ef9f286cc04d77cf6b79e (diff) | |
| download | emacs-0433ffa6c7921dbcc7fa7f7b9542586a1597bc53.tar.gz emacs-0433ffa6c7921dbcc7fa7f7b9542586a1597bc53.zip | |
Add some autoloads.
* htmlfontify.el (htmlfontify-buffer)
(htmlfontify-copy-and-link-dir): Autoload entry points.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/htmlfontify.el | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8c0fbc4c143..1cba0e853b4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-04-17 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * htmlfontify.el (htmlfontify-buffer) | ||
| 4 | (htmlfontify-copy-and-link-dir): Autoload entry points. | ||
| 5 | |||
| 1 | 2010-04-17 Magnus Henoch <magnus.henoch@gmail.com> | 6 | 2010-04-17 Magnus Henoch <magnus.henoch@gmail.com> |
| 2 | 7 | ||
| 3 | * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file | 8 | * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file |
diff --git a/lisp/htmlfontify.el b/lisp/htmlfontify.el index dbf5cea7fc8..19aae590cb2 100644 --- a/lisp/htmlfontify.el +++ b/lisp/htmlfontify.el | |||
| @@ -1790,6 +1790,7 @@ FILE, if set, is the file name." | |||
| 1790 | (when font-lock-defaults | 1790 | (when font-lock-defaults |
| 1791 | (font-lock-fontify-buffer)) )) | 1791 | (font-lock-fontify-buffer)) )) |
| 1792 | 1792 | ||
| 1793 | ;;;###autoload | ||
| 1793 | (defun htmlfontify-buffer (&optional srcdir file) | 1794 | (defun htmlfontify-buffer (&optional srcdir file) |
| 1794 | "Create a new buffer, named for the current buffer + a .html extension, | 1795 | "Create a new buffer, named for the current buffer + a .html extension, |
| 1795 | containing an inline CSS-stylesheet and formatted CSS-markup HTML | 1796 | containing an inline CSS-stylesheet and formatted CSS-markup HTML |
| @@ -2276,6 +2277,7 @@ See also `hfy-load-tags-cache'." | |||
| 2276 | (save-buffer) | 2277 | (save-buffer) |
| 2277 | (kill-buffer B))) | 2278 | (kill-buffer B))) |
| 2278 | 2279 | ||
| 2280 | ;;;###autoload | ||
| 2279 | (defun htmlfontify-copy-and-link-dir (srcdir dstdir &optional f-ext l-ext) | 2281 | (defun htmlfontify-copy-and-link-dir (srcdir dstdir &optional f-ext l-ext) |
| 2280 | "Trawl SRCDIR and write fontified-and-hyperlinked output in DSTDIR. | 2282 | "Trawl SRCDIR and write fontified-and-hyperlinked output in DSTDIR. |
| 2281 | F-EXT and L-EXT specify values for `hfy-extn' and `hfy-link-extn'.\n | 2283 | F-EXT and L-EXT specify values for `hfy-extn' and `hfy-link-extn'.\n |