Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
565620a5
Commit
565620a5
authored
Jun 15, 1994
by
Richard M. Stallman
Browse files
Put stdio.h after config.h.
parent
c389a86d
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
8 deletions
+18
-8
src/callproc.c
src/callproc.c
+1
-1
src/dispnew.c
src/dispnew.c
+2
-1
src/frame.c
src/frame.c
+11
-2
src/term.c
src/term.c
+1
-1
src/widget.c
src/widget.c
+1
-1
src/xmenu.c
src/xmenu.c
+2
-2
No files found.
src/callproc.c
View file @
565620a5
...
...
@@ -20,9 +20,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <signal.h>
#include <errno.h>
#include <stdio.h>
#include <config.h>
#include <stdio.h>
extern
int
errno
;
extern
char
*
strerror
();
...
...
src/dispnew.c
View file @
565620a5
...
...
@@ -19,9 +19,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <signal.h>
#include <stdio.h>
#include <config.h>
#include <stdio.h>
#include <ctype.h>
#include "lisp.h"
...
...
src/frame.c
View file @
565620a5
...
...
@@ -17,9 +17,9 @@ You should have received a copy of the GNU General Public License
along with GNU Emacs; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <stdio.h>
#include <config.h>
#include <stdio.h>
#include "lisp.h"
#include "frame.h"
#include "termhooks.h"
...
...
@@ -1055,6 +1055,9 @@ If omitted, FRAME defaults to the currently selected frame.")
}
#endif
/* Make menu bar update for the Buffers and Frams menus. */
windows_or_buffers_changed
++
;
return
frame
;
}
...
...
@@ -1093,6 +1096,9 @@ but if the second optional argument FORCE is non-nil, you may do so.")
x_make_frame_invisible
(
XFRAME
(
frame
));
#endif
/* Make menu bar update for the Buffers and Frams menus. */
windows_or_buffers_changed
++
;
return
Qnil
;
}
...
...
@@ -1126,6 +1132,9 @@ If omitted, FRAME defaults to the currently selected frame.")
x_iconify_frame
(
XFRAME
(
frame
));
#endif
/* Make menu bar update for the Buffers and Frams menus. */
windows_or_buffers_changed
++
;
return
Qnil
;
}
...
...
src/term.c
View file @
565620a5
...
...
@@ -18,9 +18,9 @@ along with GNU Emacs; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <config.h>
#include <stdio.h>
#include <ctype.h>
#include <config.h>
#include "termchar.h"
#include "termopts.h"
#include "cm.h"
...
...
src/widget.c
View file @
565620a5
...
...
@@ -19,8 +19,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* Emacs 19 face widget ported by Fred Pierresteguy */
#include <stdio.h>
#include <config.h>
#include <stdio.h>
#include "lisp.h"
#include "xterm.h"
...
...
src/xmenu.c
View file @
565620a5
...
...
@@ -29,11 +29,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* Rewritten for clarity and GC protection by rms in Feb 94. */
#include <stdio.h>
/* On 4.3 this loses if it comes after xterm.h. */
#include <signal.h>
#include <config.h>
#include <stdio.h>
#include "lisp.h"
#include "termhooks.h"
#include "frame.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment