diff options
| author | Glenn Morris | 2012-11-16 20:29:24 -0500 |
|---|---|---|
| committer | Glenn Morris | 2012-11-16 20:29:24 -0500 |
| commit | 9a5e2ee3cc86be6b052cba7033a24a8418a263f1 (patch) | |
| tree | 96bc675e3b2a809bd3c6f971b6a335f7a462956c /lisp | |
| parent | 65463c4091fe92fd09295bcbbc38dcd18fa41a16 (diff) | |
| download | emacs-9a5e2ee3cc86be6b052cba7033a24a8418a263f1.tar.gz emacs-9a5e2ee3cc86be6b052cba7033a24a8418a263f1.zip | |
Use set-face-underline rather than the alias set-face-underline-p
* lisp/woman.el (woman-non-underline-faces):
* lisp/emacs-lisp/cl-lib.el (face-underline-p):
Use set-face-underline rather than the alias set-face-underline-p.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/cl-lib.el | 2 | ||||
| -rw-r--r-- | lisp/woman.el | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 416f0d0ec47..e67bc5b556c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2012-11-17 Glenn Morris <rgm@gnu.org> | 1 | 2012-11-17 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * woman.el (woman-non-underline-faces): | ||
| 4 | * emacs-lisp/cl-lib.el (face-underline-p): | ||
| 5 | Use set-face-underline rather than the alias set-face-underline-p. | ||
| 6 | |||
| 3 | * window.el (with-temp-buffer-window): Doc fix. | 7 | * window.el (with-temp-buffer-window): Doc fix. |
| 4 | 8 | ||
| 5 | 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca> | 9 | 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca> |
diff --git a/lisp/emacs-lisp/cl-lib.el b/lisp/emacs-lisp/cl-lib.el index 9515c6fd12f..7b22c7aac41 100644 --- a/lisp/emacs-lisp/cl-lib.el +++ b/lisp/emacs-lisp/cl-lib.el | |||
| @@ -661,7 +661,7 @@ If ALIST is non-nil, the new pairs are prepended to it." | |||
| 661 | (gv-define-setter face-foreground (x f &optional s) | 661 | (gv-define-setter face-foreground (x f &optional s) |
| 662 | `(set-face-foreground ,f ,x ,s)) | 662 | `(set-face-foreground ,f ,x ,s)) |
| 663 | (gv-define-setter face-underline-p (x f &optional s) | 663 | (gv-define-setter face-underline-p (x f &optional s) |
| 664 | `(set-face-underline-p ,f ,x ,s)) | 664 | `(set-face-underline ,f ,x ,s)) |
| 665 | (gv-define-simple-setter file-modes set-file-modes t) | 665 | (gv-define-simple-setter file-modes set-file-modes t) |
| 666 | (gv-define-simple-setter frame-height set-screen-height t) | 666 | (gv-define-simple-setter frame-height set-screen-height t) |
| 667 | (gv-define-simple-setter frame-parameters modify-frame-parameters t) | 667 | (gv-define-simple-setter frame-parameters modify-frame-parameters t) |
diff --git a/lisp/woman.el b/lisp/woman.el index 974a7d72465..a1836cdff0e 100644 --- a/lisp/woman.el +++ b/lisp/woman.el | |||
| @@ -2191,7 +2191,7 @@ To be called on original buffer and any .so insertions." | |||
| 2191 | (face-underline-p face)) | 2191 | (face-underline-p face)) |
| 2192 | (let ((face-no-ul (intern (concat face-name "-no-ul")))) | 2192 | (let ((face-no-ul (intern (concat face-name "-no-ul")))) |
| 2193 | (copy-face face face-no-ul) | 2193 | (copy-face face face-no-ul) |
| 2194 | (set-face-underline-p face-no-ul nil))))))) | 2194 | (set-face-underline face-no-ul nil))))))) |
| 2195 | 2195 | ||
| 2196 | ;; Preprocessors | 2196 | ;; Preprocessors |
| 2197 | ;; ============= | 2197 | ;; ============= |