summaryrefslogtreecommitdiff
path: root/lisp/tmm.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@jurta.org>2005-06-06 16:28:26 +0000
committerJuri Linkov <juri@jurta.org>2005-06-06 16:28:26 +0000
commite43cbeae69c62d0fd1de362cdf154623322ad059 (patch)
tree2e06c109b2e6cb0c36c35bb6f9b0bd6797a7178f /lisp/tmm.el
parent6e005d5617bf8b74c2633a17336671f34d003b1e (diff)
downloademacs-e43cbeae69c62d0fd1de362cdf154623322ad059.tar.gz
(tmm-inactive, tmm-remove-inactive-mouse-face):
Rename `tmm-inactive-face' to `tmm-inactive'.
Diffstat (limited to 'lisp/tmm.el')
-rw-r--r--lisp/tmm.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/tmm.el b/lisp/tmm.el
index 73eb404b14c..aa47012c642 100644
--- a/lisp/tmm.el
+++ b/lisp/tmm.el
@@ -133,7 +133,7 @@ specify nil for this variable."
:type '(choice integer (const nil))
:group 'tmm)
-(defface tmm-inactive-face
+(defface tmm-inactive
'((t :inherit shadow))
"Face used for inactive menu items."
:group 'tmm)
@@ -349,7 +349,7 @@ Stores a list of all the shortcuts in the free variable `tmm-short-cuts'."
(setq next (next-single-char-property-change (point) 'mouse-face))
(when (looking-at inactive-string)
(remove-text-properties (point) next '(mouse-face))
- (add-text-properties (point) next '(face tmm-inactive-face)))
+ (add-text-properties (point) next '(face tmm-inactive)))
(goto-char next)))
(set-buffer-modified-p nil)))