* src/atimer.c: Use "" instead of <> for local includes for
authorDan Nicolaescu <dann@ics.uci.edu>
Mon, 5 Jul 2010 04:57:13 +0000 (21:57 -0700)
committerDan Nicolaescu <dann@ics.uci.edu>
Mon, 5 Jul 2010 04:57:13 +0000 (21:57 -0700)
consistency with the rest of the code.

src/ChangeLog
src/atimer.c

index 198f7ea..3bccc71 100644 (file)
@@ -1,5 +1,8 @@
 2010-07-05  Dan Nicolaescu  <dann@ics.uci.edu>
 
+       * atimer.c: Use "" instead of <> for local includes for
+       consistency with the rest of the code.
+
        * xsmfns.c (smc_save_yourself_CB, smc_error_handler):
        * xrdb.c (get_system_name):
        * window.c (shrink_windows):
index 23f3915..c9cf145 100644 (file)
@@ -21,11 +21,11 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include <signal.h>
 #include <stdio.h>
 #include <setjmp.h>
-#include <lisp.h>
-#include <syssignal.h>
-#include <systime.h>
-#include <blockinput.h>
-#include <atimer.h>
+#include "lisp.h"
+#include "syssignal.h"
+#include "systime.h"
+#include "blockinput.h"
+#include "atimer.h"
 
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>