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
214acc50
Commit
214acc50
authored
Feb 20, 1997
by
Karl Heuer
Browse files
(DISP_CHAR_VECTOR): Always return nil for multibyte
characters.
parent
dfbb1e90
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/disptab.h
src/disptab.h
+1
-1
No files found.
src/disptab.h
View file @
214acc50
...
...
@@ -33,7 +33,7 @@ Boston, MA 02111-1307, USA. */
#define DISP_INVIS_VECTOR(dp) ((dp)->extras[4])
#define DISP_BORDER_GLYPH(dp) ((dp)->extras[5])
#define DISP_CHAR_VECTOR(dp, c) ((dp)->contents[c])
#define DISP_CHAR_VECTOR(dp, c) (
(c) < 0x80 ?
(dp)->contents[c]
: Qnil
)
/* Defined in window.c. */
extern
struct
Lisp_Char_Table
*
window_display_table
();
...
...
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