aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog3
-rw-r--r--src/atimer.c10
2 files changed, 8 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 198f7ea5073..3bccc7179d5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12010-07-05 Dan Nicolaescu <dann@ics.uci.edu> 12010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
2 2
3 * atimer.c: Use "" instead of <> for local includes for
4 consistency with the rest of the code.
5
3 * xsmfns.c (smc_save_yourself_CB, smc_error_handler): 6 * xsmfns.c (smc_save_yourself_CB, smc_error_handler):
4 * xrdb.c (get_system_name): 7 * xrdb.c (get_system_name):
5 * window.c (shrink_windows): 8 * window.c (shrink_windows):
diff --git a/src/atimer.c b/src/atimer.c
index 23f3915d9c0..c9cf145ad85 100644
--- a/src/atimer.c
+++ b/src/atimer.c
@@ -21,11 +21,11 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21#include <signal.h> 21#include <signal.h>
22#include <stdio.h> 22#include <stdio.h>
23#include <setjmp.h> 23#include <setjmp.h>
24#include <lisp.h> 24#include "lisp.h"
25#include <syssignal.h> 25#include "syssignal.h"
26#include <systime.h> 26#include "systime.h"
27#include <blockinput.h> 27#include "blockinput.h"
28#include <atimer.h> 28#include "atimer.h"
29 29
30#ifdef HAVE_UNISTD_H 30#ifdef HAVE_UNISTD_H
31#include <unistd.h> 31#include <unistd.h>