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/charset.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/charset.c')
| -rw-r--r-- | src/charset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.c b/src/charset.c index 05469aa2650..0c831f13591 100644 --- a/src/charset.c +++ b/src/charset.c | |||
| @@ -1401,7 +1401,7 @@ check_iso_charset_parameter (Lisp_Object dimension, Lisp_Object chars, | |||
| 1401 | 1401 | ||
| 1402 | int final_ch = XFASTINT (final_char); | 1402 | int final_ch = XFASTINT (final_char); |
| 1403 | if (! ('0' <= final_ch && final_ch <= '~')) | 1403 | if (! ('0' <= final_ch && final_ch <= '~')) |
| 1404 | error ("Invalid FINAL-CHAR '%c', it should be '0'..'~'", final_ch); | 1404 | error ("Invalid FINAL-CHAR `%c', it should be `0'..`~'", final_ch); |
| 1405 | 1405 | ||
| 1406 | return chars_flag; | 1406 | return chars_flag; |
| 1407 | } | 1407 | } |