]> git.eshelyaron.com Git - emacs.git/commitdiff
(temp_echo_area_glyphs): String pointer args now
authorKen Raeburn <raeburn@raeburn.org>
Tue, 16 Jul 2002 19:48:51 +0000 (19:48 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Tue, 16 Jul 2002 19:48:51 +0000 (19:48 +0000)
point to const.
(Fminibuffer_complete_word): Use const for pointer to
lisp string data.

src/minibuf.c

index 87cdcea452292aa094ad2bb601d3935a3cb699f1..eeaad5583e64a2ece5903bdbda0486b984c141f8 100644 (file)
@@ -1942,7 +1942,7 @@ Return nil if there is no valid completion, else t.  */)
 {
   Lisp_Object completion, tem, tem1;
   register int i, i_byte;
-  register unsigned char *completion_string;
+  register const unsigned char *completion_string;
   struct gcpro gcpro1, gcpro2;
   int prompt_end_charpos = XINT (Fminibuffer_prompt_end ());
 
@@ -2365,7 +2365,7 @@ If no minibuffer is active, return nil.  */)
 
 void
 temp_echo_area_glyphs (m)
-     char *m;
+     const char *m;
 {
   int osize = ZV;
   int osize_byte = ZV_BYTE;