aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-12-20 15:13:36 +0000
committerGerd Moellmann2000-12-20 15:13:36 +0000
commit102d8a221677b20dfefa0bd612b634ceb4ccd17b (patch)
treeb3d5a87dc7b258cea5c53c56720dd53eefd2c5b2 /src
parent8de4aaf863f5796d7ab54a478a58cf3ff069e0cb (diff)
downloademacs-102d8a221677b20dfefa0bd612b634ceb4ccd17b.tar.gz
emacs-102d8a221677b20dfefa0bd612b634ceb4ccd17b.zip
(echo_prompt): Prevent a compiler warning.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 8fb0a1ec897..d8fc173e7d8 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -699,7 +699,7 @@ echo_prompt (str)
699 { 699 {
700 if (multibyte_p) 700 if (multibyte_p)
701 { 701 {
702 unsigned char *p = XSTRING (str)->data, *lastp; 702 unsigned char *p = XSTRING (str)->data, *lastp = p;
703 unsigned char *pend = p + ECHOBUFSIZE - 4; 703 unsigned char *pend = p + ECHOBUFSIZE - 4;
704 704
705 while (p < pend) 705 while (p < pend)