diff options
| author | Gerd Moellmann | 2000-12-20 15:13:36 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-12-20 15:13:36 +0000 |
| commit | 102d8a221677b20dfefa0bd612b634ceb4ccd17b (patch) | |
| tree | b3d5a87dc7b258cea5c53c56720dd53eefd2c5b2 /src | |
| parent | 8de4aaf863f5796d7ab54a478a58cf3ff069e0cb (diff) | |
| download | emacs-102d8a221677b20dfefa0bd612b634ceb4ccd17b.tar.gz emacs-102d8a221677b20dfefa0bd612b634ceb4ccd17b.zip | |
(echo_prompt): Prevent a compiler warning.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 2 |
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) |