diff options
| author | Pavel Janík | 2001-10-08 08:39:21 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-10-08 08:39:21 +0000 |
| commit | 3fe81fdfd29e9d2d367076c3a323255e4aa3d6d4 (patch) | |
| tree | 12016441f85d57604f06c6bb861b26469637cf1c /src | |
| parent | 32c82ac0a18004dac223729f6e3a77a197814086 (diff) | |
| download | emacs-3fe81fdfd29e9d2d367076c3a323255e4aa3d6d4.tar.gz emacs-3fe81fdfd29e9d2d367076c3a323255e4aa3d6d4.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/keyboard.c | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 4e5a211d82e..c4030bffbb6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-10-08 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | ||
| 2 | |||
| 3 | * keyboard.c: Don't define min/max. | ||
| 4 | |||
| 1 | 2001-10-08 Gerd Moellmann <gerd@gnu.org> | 5 | 2001-10-08 Gerd Moellmann <gerd@gnu.org> |
| 2 | 6 | ||
| 3 | * xterm.c, xmenu.c, xfns.c, xdisp.c, window.c: | 7 | * xterm.c, xmenu.c, xfns.c, xdisp.c, window.c: |
diff --git a/src/keyboard.c b/src/keyboard.c index b9b825e16b3..6319ca2ff64 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -696,9 +696,6 @@ static void any_kboard_state P_ ((void)); | |||
| 696 | to support it. */ | 696 | to support it. */ |
| 697 | static int cannot_suspend; | 697 | static int cannot_suspend; |
| 698 | 698 | ||
| 699 | #define min(a,b) ((a)<(b)?(a):(b)) | ||
| 700 | #define max(a,b) ((a)>(b)?(a):(b)) | ||
| 701 | |||
| 702 | /* Install the string STR as the beginning of the string of echoing, | 699 | /* Install the string STR as the beginning of the string of echoing, |
| 703 | so that it serves as a prompt for the next character. | 700 | so that it serves as a prompt for the next character. |
| 704 | Also start echoing. */ | 701 | Also start echoing. */ |