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/frame.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/frame.c')
| -rw-r--r-- | src/frame.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frame.c b/src/frame.c index e17c8acfc3c..dd9ad777ddf 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -2412,7 +2412,7 @@ store_frame_param (struct frame *f, Lisp_Object prop, Lisp_Object val) | |||
| 2412 | if (WINDOWP (val)) | 2412 | if (WINDOWP (val)) |
| 2413 | { | 2413 | { |
| 2414 | if (!MINI_WINDOW_P (XWINDOW (val))) | 2414 | if (!MINI_WINDOW_P (XWINDOW (val))) |
| 2415 | error ("The 'minibuffer' parameter does not specify a valid minibuffer window"); | 2415 | error ("The `minibuffer' parameter does not specify a valid minibuffer window"); |
| 2416 | else if (FRAME_MINIBUF_ONLY_P (f)) | 2416 | else if (FRAME_MINIBUF_ONLY_P (f)) |
| 2417 | { | 2417 | { |
| 2418 | if (EQ (val, FRAME_MINIBUF_WINDOW (f))) | 2418 | if (EQ (val, FRAME_MINIBUF_WINDOW (f))) |
| @@ -2442,7 +2442,7 @@ store_frame_param (struct frame *f, Lisp_Object prop, Lisp_Object val) | |||
| 2442 | only nil was specified as new value. */ | 2442 | only nil was specified as new value. */ |
| 2443 | val = old_val; | 2443 | val = old_val; |
| 2444 | else if (!EQ (old_val, val)) | 2444 | else if (!EQ (old_val, val)) |
| 2445 | error ("Can't change the 'minibuffer' parameter of this frame"); | 2445 | error ("Can't change the `minibuffer' parameter of this frame"); |
| 2446 | } | 2446 | } |
| 2447 | } | 2447 | } |
| 2448 | } | 2448 | } |