diff options
| author | Richard M. Stallman | 1994-06-15 03:54:06 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-06-15 03:54:06 +0000 |
| commit | 565620a54d14465fe7c2fe912a41eb7a36d93d10 (patch) | |
| tree | 394b31f26d4fe0c31d80d674398dc45979d775b2 /src | |
| parent | c389a86d1ca88edab4675b1bd8535d405ed06d66 (diff) | |
| download | emacs-565620a54d14465fe7c2fe912a41eb7a36d93d10.tar.gz emacs-565620a54d14465fe7c2fe912a41eb7a36d93d10.zip | |
Put stdio.h after config.h.
Diffstat (limited to 'src')
| -rw-r--r-- | src/callproc.c | 2 | ||||
| -rw-r--r-- | src/dispnew.c | 3 | ||||
| -rw-r--r-- | src/frame.c | 13 | ||||
| -rw-r--r-- | src/term.c | 2 | ||||
| -rw-r--r-- | src/widget.c | 2 | ||||
| -rw-r--r-- | src/xmenu.c | 4 |
6 files changed, 18 insertions, 8 deletions
diff --git a/src/callproc.c b/src/callproc.c index 14e34454f71..4f66b5afc4a 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -20,9 +20,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 20 | 20 | ||
| 21 | #include <signal.h> | 21 | #include <signal.h> |
| 22 | #include <errno.h> | 22 | #include <errno.h> |
| 23 | #include <stdio.h> | ||
| 24 | 23 | ||
| 25 | #include <config.h> | 24 | #include <config.h> |
| 25 | #include <stdio.h> | ||
| 26 | 26 | ||
| 27 | extern int errno; | 27 | extern int errno; |
| 28 | extern char *strerror (); | 28 | extern char *strerror (); |
diff --git a/src/dispnew.c b/src/dispnew.c index 81470fba4ad..62bd1d0e6d7 100644 --- a/src/dispnew.c +++ b/src/dispnew.c | |||
| @@ -19,9 +19,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 19 | 19 | ||
| 20 | 20 | ||
| 21 | #include <signal.h> | 21 | #include <signal.h> |
| 22 | #include <stdio.h> | ||
| 23 | 22 | ||
| 24 | #include <config.h> | 23 | #include <config.h> |
| 24 | |||
| 25 | #include <stdio.h> | ||
| 25 | #include <ctype.h> | 26 | #include <ctype.h> |
| 26 | 27 | ||
| 27 | #include "lisp.h" | 28 | #include "lisp.h" |
diff --git a/src/frame.c b/src/frame.c index f843345d936..5face5086a9 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -17,9 +17,9 @@ You should have received a copy of the GNU General Public License | |||
| 17 | along with GNU Emacs; see the file COPYING. If not, write to | 17 | along with GNU Emacs; see the file COPYING. If not, write to |
| 18 | the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | 18 | the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ |
| 19 | 19 | ||
| 20 | #include <stdio.h> | ||
| 21 | |||
| 22 | #include <config.h> | 20 | #include <config.h> |
| 21 | |||
| 22 | #include <stdio.h> | ||
| 23 | #include "lisp.h" | 23 | #include "lisp.h" |
| 24 | #include "frame.h" | 24 | #include "frame.h" |
| 25 | #include "termhooks.h" | 25 | #include "termhooks.h" |
| @@ -1055,6 +1055,9 @@ If omitted, FRAME defaults to the currently selected frame.") | |||
| 1055 | } | 1055 | } |
| 1056 | #endif | 1056 | #endif |
| 1057 | 1057 | ||
| 1058 | /* Make menu bar update for the Buffers and Frams menus. */ | ||
| 1059 | windows_or_buffers_changed++; | ||
| 1060 | |||
| 1058 | return frame; | 1061 | return frame; |
| 1059 | } | 1062 | } |
| 1060 | 1063 | ||
| @@ -1093,6 +1096,9 @@ but if the second optional argument FORCE is non-nil, you may do so.") | |||
| 1093 | x_make_frame_invisible (XFRAME (frame)); | 1096 | x_make_frame_invisible (XFRAME (frame)); |
| 1094 | #endif | 1097 | #endif |
| 1095 | 1098 | ||
| 1099 | /* Make menu bar update for the Buffers and Frams menus. */ | ||
| 1100 | windows_or_buffers_changed++; | ||
| 1101 | |||
| 1096 | return Qnil; | 1102 | return Qnil; |
| 1097 | } | 1103 | } |
| 1098 | 1104 | ||
| @@ -1126,6 +1132,9 @@ If omitted, FRAME defaults to the currently selected frame.") | |||
| 1126 | x_iconify_frame (XFRAME (frame)); | 1132 | x_iconify_frame (XFRAME (frame)); |
| 1127 | #endif | 1133 | #endif |
| 1128 | 1134 | ||
| 1135 | /* Make menu bar update for the Buffers and Frams menus. */ | ||
| 1136 | windows_or_buffers_changed++; | ||
| 1137 | |||
| 1129 | return Qnil; | 1138 | return Qnil; |
| 1130 | } | 1139 | } |
| 1131 | 1140 | ||
diff --git a/src/term.c b/src/term.c index 6001e9b82d0..6922498983c 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -18,9 +18,9 @@ along with GNU Emacs; see the file COPYING. If not, write to | |||
| 18 | the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | 18 | the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ |
| 19 | 19 | ||
| 20 | 20 | ||
| 21 | #include <config.h> | ||
| 21 | #include <stdio.h> | 22 | #include <stdio.h> |
| 22 | #include <ctype.h> | 23 | #include <ctype.h> |
| 23 | #include <config.h> | ||
| 24 | #include "termchar.h" | 24 | #include "termchar.h" |
| 25 | #include "termopts.h" | 25 | #include "termopts.h" |
| 26 | #include "cm.h" | 26 | #include "cm.h" |
diff --git a/src/widget.c b/src/widget.c index 194d23933ab..2bc5256f311 100644 --- a/src/widget.c +++ b/src/widget.c | |||
| @@ -19,8 +19,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 19 | 19 | ||
| 20 | /* Emacs 19 face widget ported by Fred Pierresteguy */ | 20 | /* Emacs 19 face widget ported by Fred Pierresteguy */ |
| 21 | 21 | ||
| 22 | #include <stdio.h> | ||
| 23 | #include <config.h> | 22 | #include <config.h> |
| 23 | #include <stdio.h> | ||
| 24 | #include "lisp.h" | 24 | #include "lisp.h" |
| 25 | #include "xterm.h" | 25 | #include "xterm.h" |
| 26 | 26 | ||
diff --git a/src/xmenu.c b/src/xmenu.c index da2ca544931..ca740d2ca13 100644 --- a/src/xmenu.c +++ b/src/xmenu.c | |||
| @@ -29,11 +29,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 29 | 29 | ||
| 30 | /* Rewritten for clarity and GC protection by rms in Feb 94. */ | 30 | /* Rewritten for clarity and GC protection by rms in Feb 94. */ |
| 31 | 31 | ||
| 32 | #include <stdio.h> | ||
| 33 | |||
| 34 | /* On 4.3 this loses if it comes after xterm.h. */ | 32 | /* On 4.3 this loses if it comes after xterm.h. */ |
| 35 | #include <signal.h> | 33 | #include <signal.h> |
| 36 | #include <config.h> | 34 | #include <config.h> |
| 35 | |||
| 36 | #include <stdio.h> | ||
| 37 | #include "lisp.h" | 37 | #include "lisp.h" |
| 38 | #include "termhooks.h" | 38 | #include "termhooks.h" |
| 39 | #include "frame.h" | 39 | #include "frame.h" |