diff options
| author | Juanma Barranquero | 2008-03-04 10:29:47 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-03-04 10:29:47 +0000 |
| commit | 6f69e89bf16fdff943fddee2260f341db51042d7 (patch) | |
| tree | d976dc3e03735c722374435d5a7ebbdea6180f5e | |
| parent | 3d193d0f78fe28c455c64c9f1689bc6134a961f4 (diff) | |
| download | emacs-6f69e89bf16fdff943fddee2260f341db51042d7.tar.gz emacs-6f69e89bf16fdff943fddee2260f341db51042d7.zip | |
Add oo.
| -rw-r--r-- | src/.gitignore | 1 | ||||
| -rw-r--r-- | src/ChangeLog | 26 |
2 files changed, 16 insertions, 11 deletions
diff --git a/src/.gitignore b/src/.gitignore index 9bb6e8932b6..950ce883e76 100644 --- a/src/.gitignore +++ b/src/.gitignore | |||
| @@ -15,6 +15,7 @@ emacs-* | |||
| 15 | epaths.h | 15 | epaths.h |
| 16 | gdb.ini | 16 | gdb.ini |
| 17 | obj | 17 | obj |
| 18 | oo | ||
| 18 | prefix-args | 19 | prefix-args |
| 19 | stamp-oldxmenu | 20 | stamp-oldxmenu |
| 20 | temacs | 21 | temacs |
diff --git a/src/ChangeLog b/src/ChangeLog index 17d98ddbe87..97c61260bfb 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-03-04 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * .cvsignore: Add oo. | ||
| 4 | |||
| 1 | 2008-03-03 Andreas Schwab <schwab@suse.de> | 5 | 2008-03-03 Andreas Schwab <schwab@suse.de> |
| 2 | 6 | ||
| 3 | * coding.c (decode_coding_object): Inhibit gap shrinking while | 7 | * coding.c (decode_coding_object): Inhibit gap shrinking while |
| @@ -6,7 +10,7 @@ | |||
| 6 | 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu> | 10 | 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu> |
| 7 | 11 | ||
| 8 | * w32term.c: Remove unused include "gnu.h". | 12 | * w32term.c: Remove unused include "gnu.h". |
| 9 | * makefile.w32-in (w32term.o): Don't depend on gnu.h | 13 | * makefile.w32-in (w32term.o): Don't depend on gnu.h. |
| 10 | 14 | ||
| 11 | * gnu.h: Rename to ... | 15 | * gnu.h: Rename to ... |
| 12 | * emacs-icon.h: ... this. | 16 | * emacs-icon.h: ... this. |
| @@ -687,7 +691,7 @@ | |||
| 687 | 691 | ||
| 688 | 2008-02-07 Jim Meyering <meyering@redhat.com> | 692 | 2008-02-07 Jim Meyering <meyering@redhat.com> |
| 689 | 693 | ||
| 690 | Use "do...while (0)", not "if (1)..else" in macro definitions. | 694 | Use "do...while (0)", not "if (1)...else" in macro definitions. |
| 691 | The latter provokes a warning from gcc about the empty else, when | 695 | The latter provokes a warning from gcc about the empty else, when |
| 692 | followed by ";". Also, without that trailing semicolon, it would | 696 | followed by ";". Also, without that trailing semicolon, it would |
| 693 | silently swallow up any following statement. | 697 | silently swallow up any following statement. |
| @@ -1259,7 +1263,7 @@ | |||
| 1259 | 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change) | 1263 | 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change) |
| 1260 | 1264 | ||
| 1261 | * frame.c (Fdelete_frame): Call font_update_drivers only when | 1265 | * frame.c (Fdelete_frame): Call font_update_drivers only when |
| 1262 | USE_FONT_BACKEND is defined.. | 1266 | USE_FONT_BACKEND is defined. |
| 1263 | 1267 | ||
| 1264 | 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp> | 1268 | 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp> |
| 1265 | 1269 | ||
| @@ -1567,13 +1571,13 @@ | |||
| 1567 | 1571 | ||
| 1568 | * w32font.c (w32font_close): Delete the GDI font object. | 1572 | * w32font.c (w32font_close): Delete the GDI font object. |
| 1569 | 1573 | ||
| 1570 | * w32menu.c: Include character.h | 1574 | * w32menu.c: Include character.h. |
| 1571 | 1575 | ||
| 1572 | * w32proc.c: Likewise. | 1576 | * w32proc.c: Likewise. |
| 1573 | 1577 | ||
| 1574 | * w32select.c: Likewise. | 1578 | * w32select.c: Likewise. |
| 1575 | 1579 | ||
| 1576 | * makefile.w32-in (w32proc.o): Depend on character.h | 1580 | * makefile.w32-in (w32proc.o): Depend on character.h. |
| 1577 | 1581 | ||
| 1578 | 2008-02-01 Jason Rumney <jasonr@gnu.org> | 1582 | 2008-02-01 Jason Rumney <jasonr@gnu.org> |
| 1579 | 1583 | ||
| @@ -1699,7 +1703,7 @@ | |||
| 1699 | Remove redundant loop and allocation. | 1703 | Remove redundant loop and allocation. |
| 1700 | 1704 | ||
| 1701 | * makefile.w32-in (font.o, w32font.o): New objects. | 1705 | * makefile.w32-in (font.o, w32font.o): New objects. |
| 1702 | (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h | 1706 | (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h. |
| 1703 | (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND. | 1707 | (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND. |
| 1704 | 1708 | ||
| 1705 | * xdisp.c (fill_composite_glyph_string): Make the first arg to | 1709 | * xdisp.c (fill_composite_glyph_string): Make the first arg to |
| @@ -1758,7 +1762,7 @@ | |||
| 1758 | (reorder_font_vector): Check contents of font_def. | 1762 | (reorder_font_vector): Check contents of font_def. |
| 1759 | 1763 | ||
| 1760 | * font.c (struct otf_list): Delete it. | 1764 | * font.c (struct otf_list): Delete it. |
| 1761 | (otf_list): Make it a lisp variable.. | 1765 | (otf_list): Make it a lisp variable. |
| 1762 | (otf_open): Use lispy otf_list. | 1766 | (otf_open): Use lispy otf_list. |
| 1763 | (generate_otf_features): Rename from parse_gsub_gpos_spec. | 1767 | (generate_otf_features): Rename from parse_gsub_gpos_spec. |
| 1764 | (check_otf_features): New function. | 1768 | (check_otf_features): New function. |
| @@ -3281,7 +3285,7 @@ | |||
| 3281 | * fileio.c (Finsert_file_contents): Avoid detecting a code twice. | 3285 | * fileio.c (Finsert_file_contents): Avoid detecting a code twice. |
| 3282 | 3286 | ||
| 3283 | * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3. | 3287 | * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3. |
| 3284 | (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.. | 3288 | (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte. |
| 3285 | 3289 | ||
| 3286 | 2008-02-01 Kenichi Handa <handa@m17n.org> | 3290 | 2008-02-01 Kenichi Handa <handa@m17n.org> |
| 3287 | 3291 | ||
| @@ -5112,7 +5116,7 @@ | |||
| 5112 | 5116 | ||
| 5113 | 2008-02-01 Dave Love <fx@gnu.org> | 5117 | 2008-02-01 Dave Love <fx@gnu.org> |
| 5114 | 5118 | ||
| 5115 | * Makefile.in (chartab.o): Depend on charset.h | 5119 | * Makefile.in (chartab.o): Depend on charset.h. |
| 5116 | 5120 | ||
| 5117 | 2008-02-01 Kenichi Handa <handa@m17n.org> | 5121 | 2008-02-01 Kenichi Handa <handa@m17n.org> |
| 5118 | 5122 | ||
| @@ -5862,7 +5866,7 @@ | |||
| 5862 | 5866 | ||
| 5863 | * mac.c (mac_emacs_pid) [MAC_OSX]: New variable. | 5867 | * mac.c (mac_emacs_pid) [MAC_OSX]: New variable. |
| 5864 | [MAC_OSX] (init_mac_osx_environment): Initialize it. | 5868 | [MAC_OSX] (init_mac_osx_environment): Initialize it. |
| 5865 | [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0 | 5869 | [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0 |
| 5866 | when used on child processes. | 5870 | when used on child processes. |
| 5867 | 5871 | ||
| 5868 | 2008-01-21 Michael Albinus <michael.albinus@gmx.de> | 5872 | 2008-01-21 Michael Albinus <michael.albinus@gmx.de> |
| @@ -6603,7 +6607,7 @@ | |||
| 6603 | 6607 | ||
| 6604 | * lisp.h (enum pvec_type): New tag PVEC_OTHER. | 6608 | * lisp.h (enum pvec_type): New tag PVEC_OTHER. |
| 6605 | (allocate_pseudovector): Declare. | 6609 | (allocate_pseudovector): Declare. |
| 6606 | (ALLOCATE_PSEUDOVECTOR): Move from alloc.c | 6610 | (ALLOCATE_PSEUDOVECTOR): Move from alloc.c. |
| 6607 | 6611 | ||
| 6608 | 2007-11-15 Andreas Schwab <schwab@suse.de> | 6612 | 2007-11-15 Andreas Schwab <schwab@suse.de> |
| 6609 | 6613 | ||