diff options
| author | Paul Eggert | 2016-08-21 04:02:06 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-08-21 04:02:38 -0700 |
| commit | b1601a95ea6337abef04544c92552caa0a5bcbca (patch) | |
| tree | 75f7e9568e167c19c1c9f71fe7dbd07c40eb7694 /src/xselect.c | |
| parent | 1a1062d6e16f97effa7030cc5f297c9c57b232ad (diff) | |
| download | emacs-b1601a95ea6337abef04544c92552caa0a5bcbca.tar.gz emacs-b1601a95ea6337abef04544c92552caa0a5bcbca.zip | |
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) | |||
| 2296 | if (format == 8) | 2296 | if (format == 8) |
| 2297 | { | 2297 | { |
| 2298 | if ((1 << 8) < val && val <= X_ULONG_MAX - (1 << 7)) | 2298 | if ((1 << 8) < val && val <= X_ULONG_MAX - (1 << 7)) |
| 2299 | error ("Out of 'char' range"); | 2299 | error ("Out of `char' range"); |
| 2300 | *d08++ = val; | 2300 | *d08++ = val; |
| 2301 | } | 2301 | } |
| 2302 | else if (format == 16) | 2302 | else if (format == 16) |
| 2303 | { | 2303 | { |
| 2304 | if ((1 << 16) < val && val <= X_ULONG_MAX - (1 << 15)) | 2304 | if ((1 << 16) < val && val <= X_ULONG_MAX - (1 << 15)) |
| 2305 | error ("Out of 'short' range"); | 2305 | error ("Out of `short' range"); |
| 2306 | *d16++ = val; | 2306 | *d16++ = val; |
| 2307 | } | 2307 | } |
| 2308 | else | 2308 | else |