Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
944c7a26
Commit
944c7a26
authored
Jan 30, 2010
by
Andreas Schwab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
parent
bf0b361c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
src/ChangeLog
src/ChangeLog
+4
-0
src/character.h
src/character.h
+2
-2
No files found.
src/ChangeLog
View file @
944c7a26
2010-01-30 Andreas Schwab <schwab@linux-m68k.org>
* character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
2010-01-29 Chong Yidong <cyd@stupidchicken.com>
* frame.c (DEFAULT_ROWS): Change default to 35.
...
...
src/character.h
View file @
944c7a26
...
...
@@ -136,8 +136,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
/* Nonzero if character C has a printable glyph. */
#define CHAR_PRINTABLE_P(c) \
(((c) >= 32 &&
(
(c) < 127) \
|| ! NILP (CHAR_TABLE_REF (Vprintable_chars, (c))))
)
(((c) >= 32 && (c) < 127) \
|| ! NILP (CHAR_TABLE_REF (Vprintable_chars, (c))))
/* Return byte length of multibyte form for character C. */
#define CHAR_BYTES(c) \
...
...
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