aboutsummaryrefslogtreecommitdiffstats
path: root/src/minibuf.c
diff options
context:
space:
mode:
authorKaroly Lorentey <[email protected]>2005-09-17 19:00:49 +0000
committerKaroly Lorentey <[email protected]>2005-09-17 19:00:49 +0000
commit567c887847144d9609ccfe550fd7ef178120297a (patch)
treea322ad214ee43847fcd5293f30c7cdac373baf9a /src/minibuf.c
parent262b162ac70eb07d3b9a591acc9d5a6c8ff90177 (diff)
parent115f219da4851988a9eca58bae20257a752a7db3 (diff)
Merged from [email protected] (patch 543)
Patches applied: * [email protected]/emacs--cvs-trunk--0--patch-543 Update from CVS git-archimport-id: [email protected]/emacs--multi-tty--0--patch-420
Diffstat (limited to 'src/minibuf.c')
-rw-r--r--src/minibuf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index a66d0f8f5c..34cadfc3e2 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -2164,7 +2164,6 @@ Return nil if there is no valid completion, else t. */)
{
Lisp_Object completion, tem, tem1;
register int i, i_byte;
- register const unsigned char *completion_string;
struct gcpro gcpro1, gcpro2;
int prompt_end_charpos = XINT (Fminibuffer_prompt_end ());
@@ -2295,7 +2294,7 @@ Return nil if there is no valid completion, else t. */)
{
int len, c;
int bytes = SBYTES (completion);
- completion_string = SDATA (completion);
+ register const unsigned char *completion_string = SDATA (completion);
for (; i_byte < SBYTES (completion); i_byte += len, i++)
{
c = STRING_CHAR_AND_LENGTH (completion_string + i_byte,