diff options
| author | Ken Raeburn | 2002-07-16 19:48:25 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2002-07-16 19:48:25 +0000 |
| commit | c9b08ba8355a818dbd34a178c51e03ff71eb9fd3 (patch) | |
| tree | 485c1bbd6b87cb85277d82200e9ef4fd4cc63da5 /src | |
| parent | 637ddd320488389781fb3a3de5f5c670c4eaa767 (diff) | |
| download | emacs-c9b08ba8355a818dbd34a178c51e03ff71eb9fd3.tar.gz emacs-c9b08ba8355a818dbd34a178c51e03ff71eb9fd3.zip | |
(Fframe_parameter): Use const for pointer to lisp
string data.
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c index d659740e2f4..6adc1f32d85 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -2107,7 +2107,7 @@ If FRAME is nil, describe the currently selected frame. */) | |||
| 2107 | "unspecified". We need to do the same here. */ | 2107 | "unspecified". We need to do the same here. */ |
| 2108 | if (STRINGP (value) && !FRAME_WINDOW_P (f)) | 2108 | if (STRINGP (value) && !FRAME_WINDOW_P (f)) |
| 2109 | { | 2109 | { |
| 2110 | char *color_name; | 2110 | const char *color_name; |
| 2111 | EMACS_INT csz; | 2111 | EMACS_INT csz; |
| 2112 | 2112 | ||
| 2113 | if (EQ (parameter, Qbackground_color)) | 2113 | if (EQ (parameter, Qbackground_color)) |