aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/ChangeLog.32
-rw-r--r--src/ChangeLog.82
-rw-r--r--src/ChangeLog.92
-rw-r--r--src/nsfns.m4
-rw-r--r--src/nsterm.m4
-rw-r--r--src/w32uniscribe.c2
7 files changed, 13 insertions, 9 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 91db3a3dbae..72552a34d30 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -2,6 +2,12 @@
2 2
3 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed. 3 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
4 4
52010-01-15 Chong Yidong <cyd@stupidchicken.com>
6
7 * nsterm.m (Qnone): Define.
8
9 * nsfns.m (Qnone): Move definition to nsterm.m.
10
52010-01-14 Kenichi Handa <handa@m17n.org> 112010-01-14 Kenichi Handa <handa@m17n.org>
6 12
7 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding 13 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
diff --git a/src/ChangeLog.3 b/src/ChangeLog.3
index cf5dbd53697..fbe3f752aed 100644
--- a/src/ChangeLog.3
+++ b/src/ChangeLog.3
@@ -4776,7 +4776,7 @@
4776 New struct face with associated typedef FACE declared, along with 4776 New struct face with associated typedef FACE declared, along with
4777 accessing macros. 4777 accessing macros.
4778 4778
4779 * scroll.c (do_scrolling): Don't bcopy non-existant `nruns' or 4779 * scroll.c (do_scrolling): Don't bcopy non-existent `nruns' or
4780 `face_list' elements. Do copy new `max_ascent' frame element. 4780 `face_list' elements. Do copy new `max_ascent' frame element.
4781 4781
4782 * dispnew.c (scroll_frame_lines): All references to frame elements 4782 * dispnew.c (scroll_frame_lines): All references to frame elements
diff --git a/src/ChangeLog.8 b/src/ChangeLog.8
index fcdf3b9bf34..de162cb39bc 100644
--- a/src/ChangeLog.8
+++ b/src/ChangeLog.8
@@ -11848,7 +11848,7 @@
11848 11848
11849 * w32fns.c (w32_strict_fontnames): New variable. 11849 * w32fns.c (w32_strict_fontnames): New variable.
11850 (Fx_create_frame): Formatting fix. 11850 (Fx_create_frame): Formatting fix.
11851 (w32_load_system_font): Keep trying to load non-existant font 11851 (w32_load_system_font): Keep trying to load non-existent font
11852 if w32_strict_fontnames is nil. Formatting fix. 11852 if w32_strict_fontnames is nil. Formatting fix.
11853 (syms_of_w32fns): Add w32-strict-fontnames. 11853 (syms_of_w32fns): Add w32-strict-fontnames.
11854 11854
diff --git a/src/ChangeLog.9 b/src/ChangeLog.9
index e4bf486aaff..b161a21eb72 100644
--- a/src/ChangeLog.9
+++ b/src/ChangeLog.9
@@ -834,7 +834,7 @@
8342001-10-02 Miles Bader <miles@gnu.org> 8342001-10-02 Miles Bader <miles@gnu.org>
835 835
836 * textprop.c (Fnext_char_property_change) 836 * textprop.c (Fnext_char_property_change)
837 (Fprevious_char_property_change): Remove reference to non-existant 837 (Fprevious_char_property_change): Remove reference to non-existent
838 argument OBJECT from doc-string. 838 argument OBJECT from doc-string.
839 839
8402001-10-01 Gerd Moellmann <gerd@gnu.org> 8402001-10-01 Gerd Moellmann <gerd@gnu.org>
diff --git a/src/nsfns.m b/src/nsfns.m
index 9fdcaa47c8c..357222bb18a 100644
--- a/src/nsfns.m
+++ b/src/nsfns.m
@@ -80,8 +80,8 @@ extern Lisp_Object Qface_set_after_frame_default;
80extern Lisp_Object Qunderline, Qundefined; 80extern Lisp_Object Qunderline, Qundefined;
81extern Lisp_Object Qheight, Qminibuffer, Qname, Qonly, Qwidth; 81extern Lisp_Object Qheight, Qminibuffer, Qname, Qonly, Qwidth;
82extern Lisp_Object Qunsplittable, Qmenu_bar_lines, Qbuffer_predicate, Qtitle; 82extern Lisp_Object Qunsplittable, Qmenu_bar_lines, Qbuffer_predicate, Qtitle;
83extern Lisp_Object Qnone;
83 84
84Lisp_Object Qnone;
85Lisp_Object Qbuffered; 85Lisp_Object Qbuffered;
86Lisp_Object Qfontsize; 86Lisp_Object Qfontsize;
87 87
@@ -2606,8 +2606,6 @@ syms_of_nsfns ()
2606{ 2606{
2607 int i; 2607 int i;
2608 2608
2609 Qnone = intern ("none");
2610 staticpro (&Qnone);
2611 Qfontsize = intern ("fontsize"); 2609 Qfontsize = intern ("fontsize");
2612 staticpro (&Qfontsize); 2610 staticpro (&Qfontsize);
2613 2611
diff --git a/src/nsterm.m b/src/nsterm.m
index 69cece47b0e..a102267920c 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -141,8 +141,7 @@ Lisp_Object ns_input_color, ns_input_text, ns_working_text;
141Lisp_Object ns_input_spi_name, ns_input_spi_arg; 141Lisp_Object ns_input_spi_name, ns_input_spi_arg;
142Lisp_Object Vx_toolkit_scroll_bars; 142Lisp_Object Vx_toolkit_scroll_bars;
143static Lisp_Object Qmodifier_value; 143static Lisp_Object Qmodifier_value;
144/* TODO: unsure why these defined in term files, anyway we need in keymap.c */ 144Lisp_Object Qalt, Qcontrol, Qhyper, Qmeta, Qsuper, Qnone;
145Lisp_Object Qalt, Qcontrol, Qhyper, Qmeta, Qsuper;
146extern Lisp_Object Qcursor_color, Qcursor_type, Qns; 145extern Lisp_Object Qcursor_color, Qcursor_type, Qns;
147 146
148/* Specifies which emacs modifier should be generated when NS receives 147/* Specifies which emacs modifier should be generated when NS receives
@@ -6151,6 +6150,7 @@ syms_of_nsterm ()
6151 DEFSYM (Qmeta, "meta"); 6150 DEFSYM (Qmeta, "meta");
6152 DEFSYM (Qsuper, "super"); 6151 DEFSYM (Qsuper, "super");
6153 DEFSYM (Qcontrol, "control"); 6152 DEFSYM (Qcontrol, "control");
6153 DEFSYM (Qnone, "none");
6154 Fput (Qalt, Qmodifier_value, make_number (alt_modifier)); 6154 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
6155 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier)); 6155 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier));
6156 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier)); 6156 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier));
diff --git a/src/w32uniscribe.c b/src/w32uniscribe.c
index cb05cd49807..f2bd0f44b50 100644
--- a/src/w32uniscribe.c
+++ b/src/w32uniscribe.c
@@ -22,7 +22,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
22 Windows 2000, though most users of older systems will have it 22 Windows 2000, though most users of older systems will have it
23 since it installs with Internet Explorer 5.0 and other software. 23 since it installs with Internet Explorer 5.0 and other software.
24 We only enable the feature if it is available, so there is no chance 24 We only enable the feature if it is available, so there is no chance
25 of calling non-existant functions. */ 25 of calling non-existent functions. */
26#undef _WIN32_WINNT 26#undef _WIN32_WINNT
27#define _WIN32_WINNT 0x500 27#define _WIN32_WINNT 0x500
28#include <windows.h> 28#include <windows.h>