diff options
| author | Dan Nicolaescu | 2008-03-03 06:32:13 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-03-03 06:32:13 +0000 |
| commit | 73f838adaf4d7fa14af503a4786076aea7329bb1 (patch) | |
| tree | 3a003eb082e848415f8fbec7a043b0a125d7a74f /src | |
| parent | 62dc3ac3540670addcc4891d3725e37ae17af321 (diff) | |
| download | emacs-73f838adaf4d7fa14af503a4786076aea7329bb1.tar.gz emacs-73f838adaf4d7fa14af503a4786076aea7329bb1.zip | |
* w32term.c: Remove unused include "gnu.h".
* makefile.w32-in (w32term.o): Don't depend on gnu.h
* gnu.h: Rename to ...
* emacs-icon.h: ... this.
* xterm.c: Use emacs-icon.h instead of gnu.h.
* Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 10 | ||||
| -rw-r--r-- | src/Makefile.in | 4 | ||||
| -rw-r--r-- | src/emacs-icon.h (renamed from src/gnu.h) | 0 | ||||
| -rw-r--r-- | src/makefile.w32-in | 1 | ||||
| -rw-r--r-- | src/w32term.c | 1 | ||||
| -rw-r--r-- | src/xterm.c | 2 |
6 files changed, 13 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9f4fc1a5d42..c7874612c6d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * w32term.c: Remove unused include "gnu.h". | ||
| 4 | * makefile.w32-in (w32term.o): Don't depend on gnu.h | ||
| 5 | |||
| 6 | * gnu.h: Rename to ... | ||
| 7 | * emacs-icon.h: ... this. | ||
| 8 | * xterm.c: Use emacs-icon.h instead of gnu.h. | ||
| 9 | * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h. | ||
| 10 | |||
| 1 | 2008-03-03 Juanma Barranquero <lekktu@gmail.com> | 11 | 2008-03-03 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 12 | ||
| 3 | * w32font.c: Include math.h. | 13 | * w32font.c: Include math.h. |
diff --git a/src/Makefile.in b/src/Makefile.in index 6113e3e8e16..5a2a93ef292 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -1205,7 +1205,7 @@ xmenu.o: xmenu.c xterm.h termhooks.h window.h dispextern.h frame.h buffer.h \ | |||
| 1205 | systime.h gtkutil.h msdos.h coding.h $(config_h) | 1205 | systime.h gtkutil.h msdos.h coding.h $(config_h) |
| 1206 | xterm.o: xterm.c xterm.h termhooks.h termopts.h termchar.h window.h buffer.h \ | 1206 | xterm.o: xterm.c xterm.h termhooks.h termopts.h termchar.h window.h buffer.h \ |
| 1207 | dispextern.h frame.h disptab.h blockinput.h atimer.h systime.h syssignal.h \ | 1207 | dispextern.h frame.h disptab.h blockinput.h atimer.h systime.h syssignal.h \ |
| 1208 | keyboard.h gnu.h character.h charset.h ccl.h fontset.h composite.h \ | 1208 | keyboard.h emacs-icon.h character.h charset.h ccl.h fontset.h composite.h \ |
| 1209 | coding.h process.h gtkutil.h $(FONTSRC) $(config_h) | 1209 | coding.h process.h gtkutil.h $(FONTSRC) $(config_h) |
| 1210 | xselect.o: xselect.c process.h dispextern.h frame.h xterm.h blockinput.h \ | 1210 | xselect.o: xselect.c process.h dispextern.h frame.h xterm.h blockinput.h \ |
| 1211 | buffer.h atimer.h systime.h termhooks.h $(config_h) | 1211 | buffer.h atimer.h systime.h termhooks.h $(config_h) |
| @@ -1267,7 +1267,7 @@ macmenu.o: macmenu.c termhooks.h frame.h window.h dispextern.h macgui.h \ | |||
| 1267 | keyboard.h blockinput.h atimer.h systime.h buffer.h macterm.h $(config_h) | 1267 | keyboard.h blockinput.h atimer.h systime.h buffer.h macterm.h $(config_h) |
| 1268 | macterm.o: blockinput.h atimer.h systime.h syssignal.h macterm.h macgui.h \ | 1268 | macterm.o: blockinput.h atimer.h systime.h syssignal.h macterm.h macgui.h \ |
| 1269 | frame.h charset.h ccl.h dispextern.h fontset.h termhooks.h termopts.h \ | 1269 | frame.h charset.h ccl.h dispextern.h fontset.h termhooks.h termopts.h \ |
| 1270 | termchar.h gnu.h disptab.h buffer.h window.h keyboard.h $(INTERVAL_SRC) \ | 1270 | termchar.h disptab.h buffer.h window.h keyboard.h $(INTERVAL_SRC) \ |
| 1271 | process.h coding.h $(config_h) | 1271 | process.h coding.h $(config_h) |
| 1272 | macselect.o: blockinput.h atimer.h systime.h macterm.h macgui.h frame.h \ | 1272 | macselect.o: blockinput.h atimer.h systime.h macterm.h macgui.h frame.h \ |
| 1273 | keymap.h $(config_h) | 1273 | keymap.h $(config_h) |
diff --git a/src/gnu.h b/src/emacs-icon.h index a727003fe7d..a727003fe7d 100644 --- a/src/gnu.h +++ b/src/emacs-icon.h | |||
diff --git a/src/makefile.w32-in b/src/makefile.w32-in index 1c12afa0168..14883fc5c90 100644 --- a/src/makefile.w32-in +++ b/src/makefile.w32-in | |||
| @@ -1526,7 +1526,6 @@ $(BLD)/w32term.$(O): \ | |||
| 1526 | $(SRC)/font.h \ | 1526 | $(SRC)/font.h \ |
| 1527 | $(SRC)/fontset.h \ | 1527 | $(SRC)/fontset.h \ |
| 1528 | $(SRC)/frame.h \ | 1528 | $(SRC)/frame.h \ |
| 1529 | $(SRC)/gnu.h \ | ||
| 1530 | $(SRC)/intervals.h \ | 1529 | $(SRC)/intervals.h \ |
| 1531 | $(SRC)/keyboard.h \ | 1530 | $(SRC)/keyboard.h \ |
| 1532 | $(SRC)/keymap.h \ | 1531 | $(SRC)/keymap.h \ |
diff --git a/src/w32term.c b/src/w32term.c index 25ecccfd6ba..944c0f9fa43 100644 --- a/src/w32term.c +++ b/src/w32term.c | |||
| @@ -46,7 +46,6 @@ Boston, MA 02110-1301, USA. */ | |||
| 46 | #include "termhooks.h" | 46 | #include "termhooks.h" |
| 47 | #include "termopts.h" | 47 | #include "termopts.h" |
| 48 | #include "termchar.h" | 48 | #include "termchar.h" |
| 49 | #include "gnu.h" | ||
| 50 | #include "disptab.h" | 49 | #include "disptab.h" |
| 51 | #include "buffer.h" | 50 | #include "buffer.h" |
| 52 | #include "window.h" | 51 | #include "window.h" |
diff --git a/src/xterm.c b/src/xterm.c index 55582b5c10d..5496dbaca32 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -77,7 +77,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 77 | #include "termhooks.h" | 77 | #include "termhooks.h" |
| 78 | #include "termopts.h" | 78 | #include "termopts.h" |
| 79 | #include "termchar.h" | 79 | #include "termchar.h" |
| 80 | #include "gnu.h" | 80 | #include "emacs-icon.h" |
| 81 | #include "disptab.h" | 81 | #include "disptab.h" |
| 82 | #include "buffer.h" | 82 | #include "buffer.h" |
| 83 | #include "window.h" | 83 | #include "window.h" |