diff options
| author | Dmitry Antipov | 2014-06-17 07:40:29 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2014-06-17 07:40:29 +0400 |
| commit | 67343d1d9fef95c242a6d050187bb036e4bb82eb (patch) | |
| tree | e72ae3b8bf17178d740e668a4193bfbd1aa21353 /src | |
| parent | 9dc774d4792633e32b3a2e583d6591faa721e637 (diff) | |
| download | emacs-67343d1d9fef95c242a6d050187bb036e4bb82eb.tar.gz emacs-67343d1d9fef95c242a6d050187bb036e4bb82eb.zip | |
* eval.c (toplevel): Remove redundant #include directives.
* xterm.c (x_initialize): Add static to match prototype.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/eval.c | 5 | ||||
| -rw-r--r-- | src/xterm.c | 2 |
3 files changed, 3 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 142ede7d681..82ab1e62541 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -5,6 +5,8 @@ | |||
| 5 | * lisp.h (Fread_file_name): Do not EXFUN it. | 5 | * lisp.h (Fread_file_name): Do not EXFUN it. |
| 6 | * composite.c (CHAR_COMPOSABLE_P): Replace unsafe macro with ... | 6 | * composite.c (CHAR_COMPOSABLE_P): Replace unsafe macro with ... |
| 7 | (char_composable_p): ... static function. All users changed. | 7 | (char_composable_p): ... static function. All users changed. |
| 8 | * eval.c (toplevel): Remove redundant #include directives. | ||
| 9 | * xterm.c (x_initialize): Add static to match prototype. | ||
| 8 | 10 | ||
| 9 | 2014-06-16 Paul Eggert <eggert@cs.ucla.edu> | 11 | 2014-06-16 Paul Eggert <eggert@cs.ucla.edu> |
| 10 | 12 | ||
diff --git a/src/eval.c b/src/eval.c index a96d413d09f..7d54ddb18f5 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -27,11 +27,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 27 | #include "commands.h" | 27 | #include "commands.h" |
| 28 | #include "keyboard.h" | 28 | #include "keyboard.h" |
| 29 | #include "dispextern.h" | 29 | #include "dispextern.h" |
| 30 | #include "frame.h" /* For XFRAME. */ | ||
| 31 | |||
| 32 | #if HAVE_X_WINDOWS | ||
| 33 | #include "xterm.h" | ||
| 34 | #endif | ||
| 35 | 30 | ||
| 36 | /* Chain of condition and catch handlers currently in effect. */ | 31 | /* Chain of condition and catch handlers currently in effect. */ |
| 37 | 32 | ||
diff --git a/src/xterm.c b/src/xterm.c index a5f6ae7d0ab..530bfe63dcb 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -10568,7 +10568,7 @@ x_create_terminal (struct x_display_info *dpyinfo) | |||
| 10568 | return terminal; | 10568 | return terminal; |
| 10569 | } | 10569 | } |
| 10570 | 10570 | ||
| 10571 | void | 10571 | static void |
| 10572 | x_initialize (void) | 10572 | x_initialize (void) |
| 10573 | { | 10573 | { |
| 10574 | baud_rate = 19200; | 10574 | baud_rate = 19200; |