1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-28 16:21:07 -08:00

* src/atimer.c: Use "" instead of <> for local includes for

consistency with the rest of the code.
This commit is contained in:
Dan Nicolaescu 2010-07-04 21:57:13 -07:00
parent dd4c510408
commit 898b4c5c2c
2 changed files with 8 additions and 5 deletions

View 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):

View 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>