From: Ken Raeburn Date: Tue, 16 Jul 2002 19:48:25 +0000 (+0000) Subject: (Fframe_parameter): Use const for pointer to lisp X-Git-Tag: ttn-vms-21-2-B4~14051 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c9b08ba8355a818dbd34a178c51e03ff71eb9fd3;p=emacs.git (Fframe_parameter): Use const for pointer to lisp string data. --- 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. */) "unspecified". We need to do the same here. */ if (STRINGP (value) && !FRAME_WINDOW_P (f)) { - char *color_name; + const char *color_name; EMACS_INT csz; if (EQ (parameter, Qbackground_color))