diff options
| author | Miles Bader | 2008-06-21 06:51:23 +0000 |
|---|---|---|
| committer | Miles Bader | 2008-06-21 06:51:23 +0000 |
| commit | 23b77eee7eae7bad675360f36ff63568c6dacc0e (patch) | |
| tree | a51a221887bca746280d003bef745a523b22ef7d | |
| parent | 0e90a43c1860e00dea1fee0973017abc401f18d9 (diff) | |
| download | emacs-23b77eee7eae7bad675360f36ff63568c6dacc0e.tar.gz emacs-23b77eee7eae7bad675360f36ff63568c6dacc0e.zip | |
Fix autoload directives in lisp/face-remap.el
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1271
| -rw-r--r-- | lisp/face-remap.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/face-remap.el b/lisp/face-remap.el index 88c1c779040..b58ee6c74cf 100644 --- a/lisp/face-remap.el +++ b/lisp/face-remap.el | |||
| @@ -103,7 +103,7 @@ The list structure of ENTRY may be destructively modified." | |||
| 103 | (setcdr entry (sort (cdr entry) 'face-attrs-more-relative-p)) | 103 | (setcdr entry (sort (cdr entry) 'face-attrs-more-relative-p)) |
| 104 | (nreverse entry)) | 104 | (nreverse entry)) |
| 105 | 105 | ||
| 106 | ;;;### autoload | 106 | ;;;###autoload |
| 107 | (defun face-remap-add-relative (face &rest specs) | 107 | (defun face-remap-add-relative (face &rest specs) |
| 108 | "Add a face remapping entry of FACE to SPECS in the current buffer. | 108 | "Add a face remapping entry of FACE to SPECS in the current buffer. |
| 109 | 109 | ||
| @@ -146,7 +146,7 @@ COOKIE should be the return value from that function." | |||
| 146 | (remq remapping face-remapping-alist))) | 146 | (remq remapping face-remapping-alist))) |
| 147 | (cdr cookie)))))) | 147 | (cdr cookie)))))) |
| 148 | 148 | ||
| 149 | ;;;### autoload | 149 | ;;;###autoload |
| 150 | (defun face-remap-reset-base (face) | 150 | (defun face-remap-reset-base (face) |
| 151 | "Set the base remapping of FACE to inherit from FACE's global definition." | 151 | "Set the base remapping of FACE to inherit from FACE's global definition." |
| 152 | (let ((entry (assq face face-remapping-alist))) | 152 | (let ((entry (assq face face-remapping-alist))) |
| @@ -160,7 +160,7 @@ COOKIE should be the return value from that function." | |||
| 160 | (remq entry face-remapping-alist)) | 160 | (remq entry face-remapping-alist)) |
| 161 | (setcar (last entry) face))))) ; otherwise, just inherit global def | 161 | (setcar (last entry) face))))) ; otherwise, just inherit global def |
| 162 | 162 | ||
| 163 | ;;;### autoload | 163 | ;;;###autoload |
| 164 | (defun face-remap-set-base (face &rest specs) | 164 | (defun face-remap-set-base (face &rest specs) |
| 165 | "Set the base remapping of FACE in the current buffer to SPECS. | 165 | "Set the base remapping of FACE in the current buffer to SPECS. |
| 166 | If SPECS is empty, the default base remapping is restored, which | 166 | If SPECS is empty, the default base remapping is restored, which |
| @@ -377,7 +377,7 @@ including a face name, a list of face names, or a face-attribute | |||
| 377 | 377 | ||
| 378 | If INTERACTIVE is non-nil, a message will be displayed describing the result. | 378 | If INTERACTIVE is non-nil, a message will be displayed describing the result. |
| 379 | 379 | ||
| 380 | This is a wrapper function which calls just `buffer-face-set' or | 380 | This is a wrapper function which calls `buffer-face-set' or |
| 381 | `buffer-face-toggle' (depending on ARG), and prints a status | 381 | `buffer-face-toggle' (depending on ARG), and prints a status |
| 382 | message in the echo area. In many cases one of those functions | 382 | message in the echo area. In many cases one of those functions |
| 383 | may be more appropriate." | 383 | may be more appropriate." |