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
635c0aa1
Commit
635c0aa1
authored
Jul 11, 2010
by
Chong Yidong
Browse files
* src/xfaces.c (Vface_remapping_alist): Doc fix (Bug#6091).
parent
4ea6cb0a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
5 deletions
+13
-5
src/ChangeLog
src/ChangeLog
+4
-0
src/xfaces.c
src/xfaces.c
+9
-5
No files found.
src/ChangeLog
View file @
635c0aa1
2010-07-11 Chong Yidong <cyd@stupidchicken.com>
* xfaces.c (Vface_remapping_alist): Doc fix (Bug#6091).
2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
* callint.c (Fcall_interactively): Use strchr, strrchr instead of
...
...
src/xfaces.c
View file @
635c0aa1
...
...
@@ -6791,10 +6791,10 @@ Each element is of the form:
(FACE REPLACEMENT...),
which causes display of the face FACE to use REPLACEMENT... instead.
REPLACEMENT... is interpreted the same way the value of a `face'
text
property
is
: it may be (1) A face name, (2) A list of face names,
(3) A
property-list of face attribute/value pairs, or (4) A list of
face names
intermixed with
lists containing face attribute/value pairs.
REPLACEMENT... is interpreted the same way
as
the value of a `face'
text
property: it may be (1) A face name, (2) A list of face names,
(3) A
property-list of face attribute/value pairs, or (4) A list of
face names or
lists containing face attribute/value pairs.
Multiple entries in REPLACEMENT... are merged together to form the final
result, with faces or attributes earlier in the list taking precedence
...
...
@@ -6818,7 +6818,11 @@ face definitions. For instance, the mode my-mode could define a face
`my-mode-default', and then in the mode setup function, do:
(set (make-local-variable 'face-remapping-alist)
'((default my-mode-default)))). */);
'((default my-mode-default)))).
Because Emacs normally only redraws screen areas when the underlying
buffer contents change, you may need to call `redraw-display' after
changing this variable for it to take effect. */);
Vface_remapping_alist = Qnil;
DEFVAR_LISP ("face-font-rescale-alist", &Vface_font_rescale_alist,
...
...
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