summaryrefslogtreecommitdiff
path: root/lisp/pcvs-info.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2002-06-18 23:03:55 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2002-06-18 23:03:55 +0000
commitc8bc0b5f48530bed81b4b5736791c26084e0ebb0 (patch)
tree29465dc994cb8154668a36e6c83f1654b3d86e7a /lisp/pcvs-info.el
parentf95b7b8957ae2d35f794d1af566d149ee66698ed (diff)
downloademacs-c8bc0b5f48530bed81b4b5736791c26084e0ebb0.tar.gz
(cvs-add-face): Fix silly oversight.
Diffstat (limited to 'lisp/pcvs-info.el')
-rw-r--r--lisp/pcvs-info.el14
1 files changed, 6 insertions, 8 deletions
diff --git a/lisp/pcvs-info.el b/lisp/pcvs-info.el
index 422063e2984..606987bddb6 100644
--- a/lisp/pcvs-info.el
+++ b/lisp/pcvs-info.el
@@ -4,7 +4,7 @@
;; Author: Stefan Monnier <monnier@cs.yale.edu>
;; Keywords: pcl-cvs
-;; Revision: $Id: pcvs-info.el,v 1.10 2002/06/15 19:04:57 walters Exp $
+;; Revision: $Id: pcvs-info.el,v 1.11 2002/06/18 21:47:41 monnier Exp $
;; This file is part of GNU Emacs.
@@ -310,13 +310,11 @@ FI-OR-TYPE can either be a symbol (a fileinfo-type) or a fileinfo."
(eq (car (memq func (cdr (assq type cvs-states)))) func))))
(defun cvs-add-face (str face &optional keymap &rest props)
- (when cvs-highlight
- (when keymap
- (when (keymapp keymap)
- (setq props (list* 'keymap keymap props)))
- (setq props (list* 'mouse-face 'highlight props)))
- (setq props (list* 'font-lock-face face props)))
- (when props (add-text-properties 0 (length str) props str))
+ (when keymap
+ (when (keymapp keymap)
+ (setq props (list* 'keymap keymap props)))
+ (setq props (list* 'mouse-face 'highlight props)))
+ (add-text-properties 0 (length str) (list* 'font-lock-face face props) str)
str)
(defun cvs-fileinfo-pp (fileinfo)