Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
211f2f72
Commit
211f2f72
authored
Jul 06, 1996
by
Lars Magne Ingebrigtsen
Browse files
* gnus-cus.el (()): Make sure that calling `gnus-visual-p' during
byte-compilation doesn't bug out.
parent
007a03bf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
lisp/gnus-cus.el
lisp/gnus-cus.el
+7
-5
No files found.
lisp/gnus-cus.el
View file @
211f2f72
...
...
@@ -108,11 +108,13 @@ Face used for group or summary buffer mouse highlighting.
The
line
beneath
the
mouse
pointer
will
be
highlighted
with
this
face.
")
(name . gnus-mouse-face)
(calculate . (if (gnus-visual-p 'mouse-face 'highlight)
(if (boundp 'gnus-mouse-face)
gnus-mouse-face
'highlight)
'default))
(calculate . (condition-case ()
(if (gnus-visual-p 'mouse-face 'highlight)
(if (boundp 'gnus-mouse-face)
gnus-mouse-face
'highlight)
'default))
(error 'default))
(type . face))
((tag . "
Article
Display
")
(doc . "
Controls
how
the
article
buffer
will
look.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment