diff options
| author | Stefan Monnier | 2006-07-07 16:12:51 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2006-07-07 16:12:51 +0000 |
| commit | 4332cf50f7706567329dda631f9c6ff986f4edf5 (patch) | |
| tree | ed1dfffd0022b9864759717d7d3035c38d619401 /src | |
| parent | dfb4bff5ef1f7fc6ffe553ff895698a84f55e517 (diff) | |
| download | emacs-4332cf50f7706567329dda631f9c6ff986f4edf5.tar.gz emacs-4332cf50f7706567329dda631f9c6ff986f4edf5.zip | |
(read_filtered_event): Remove `register' qualifier because it
causes compilation problem with gcc-4.0.2-20051125 on amd64.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/lread.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index e1c64612ca1..f7c171e5d44 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-07-07 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * lread.c (read_filtered_event): Remove `register' qualifier because it | ||
| 4 | causes compilation problem with gcc-4.0.2-20051125 on amd64. | ||
| 5 | |||
| 1 | 2006-07-07 Eli Zaretskii <eliz@gnu.org> | 6 | 2006-07-07 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * keyboard.c (Fexecute_extended_command): Mention the argument | 8 | * keyboard.c (Fexecute_extended_command): Mention the argument |
diff --git a/src/lread.c b/src/lread.c index eb67a437a73..3cf68f6455c 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -459,7 +459,7 @@ read_filtered_event (no_switch_frame, ascii_required, error_nonascii, | |||
| 459 | input_method) | 459 | input_method) |
| 460 | int no_switch_frame, ascii_required, error_nonascii, input_method; | 460 | int no_switch_frame, ascii_required, error_nonascii, input_method; |
| 461 | { | 461 | { |
| 462 | register Lisp_Object val, delayed_switch_frame; | 462 | Lisp_Object val, delayed_switch_frame; |
| 463 | 463 | ||
| 464 | #ifdef HAVE_WINDOW_SYSTEM | 464 | #ifdef HAVE_WINDOW_SYSTEM |
| 465 | if (display_hourglass_p) | 465 | if (display_hourglass_p) |