diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2016-08-21 04:02:06 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-08-21 04:02:38 -0700 |
commit | b1601a95ea6337abef04544c92552caa0a5bcbca (patch) | |
tree | 75f7e9568e167c19c1c9f71fe7dbd07c40eb7694 /src/xselect.c | |
parent | 1a1062d6e16f97effa7030cc5f297c9c57b232ad (diff) | |
download | emacs-b1601a95ea6337abef04544c92552caa0a5bcbca.tar.gz |
Minor text-quoting-style fixes
* src/charset.c (check_iso_charset_parameter):
* src/frame.c (store_frame_param):
* src/xselect.c (x_fill_property_data):
Use grave accent for left single quote in ‘error’ format strings.
Diffstat (limited to 'src/xselect.c')
-rw-r--r-- | src/xselect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xselect.c b/src/xselect.c index 8de436f119d..616d12c7cab 100644 --- a/src/xselect.c +++ b/src/xselect.c @@ -2296,13 +2296,13 @@ x_fill_property_data (Display *dpy, Lisp_Object data, void *ret, int format) if (format == 8) { if ((1 << 8) < val && val <= X_ULONG_MAX - (1 << 7)) - error ("Out of 'char' range"); + error ("Out of `char' range"); *d08++ = val; } else if (format == 16) { if ((1 << 16) < val && val <= X_ULONG_MAX - (1 << 15)) - error ("Out of 'short' range"); + error ("Out of `short' range"); *d16++ = val; } else |