From c70a4df6d2e683a591e7487c7940f7f18f5af65e Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 28 Mar 2005 21:31:14 +0000 Subject: (Fexpand_file_name): Use IS_DEVICE_SEP. (file_name_absolute_p): New fun, extracted from Ffile_name_absolute_p. (Ffile_name_absolute_p): Use it. (search_embedded_absfilename): New fun, extracted from Fsubstitute_in_file_name. Use file_name_absolute_p. Free the pw data after use. (Fsubstitute_in_file_name): Use it. After cutting a prefix, re-check file-name-handler. --- src/ChangeLog | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index 4ea174bdc60..1a5561160d0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,14 @@ +2005-03-28 Stefan Monnier + + * fileio.c (Fexpand_file_name): Use IS_DEVICE_SEP. + (file_name_absolute_p): New fun, extracted from Ffile_name_absolute_p. + (Ffile_name_absolute_p): Use it. + (search_embedded_absfilename): New fun, extracted from + Fsubstitute_in_file_name. Use file_name_absolute_p. + Free the pw data after use. + (Fsubstitute_in_file_name): Use it. + After cutting a prefix, re-check file-name-handler. + 2005-03-26 Lennart Borgman * w32term.h (x_output): add focus_state. -- cgit v1.2.1 From c364fe1954f1266e3f59df49a2de731a790551cf Mon Sep 17 00:00:00 2001 From: Kim F. Storm Date: Tue, 29 Mar 2005 22:28:11 +0000 Subject: *** empty log message *** --- src/ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index 1a5561160d0..55c11986e12 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2005-03-30 Kim F. Storm + + * xdisp.c (display_line): Allow multiple overlay arrows in window. + 2005-03-28 Stefan Monnier * fileio.c (Fexpand_file_name): Use IS_DEVICE_SEP. -- cgit v1.2.1 From f793f88572253947eff8d61d2ce28ffcee04ecb8 Mon Sep 17 00:00:00 2001 From: Kim F. Storm Date: Thu, 31 Mar 2005 10:10:59 +0000 Subject: *** empty log message *** --- src/ChangeLog | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index 55c11986e12..eec09dac664 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2005-03-31 Kim F. Storm + + * keyboard.c (Qmouse_fixup_help_message): New var. + (syms_of_keyboard): Intern and staticpro it. + (show_help_echo): Apply mouse-fixup-help-message to help string. + 2005-03-30 Kim F. Storm * xdisp.c (display_line): Allow multiple overlay arrows in window. -- cgit v1.2.1 From bf762c986c83b78cac247e5c96293db707cce184 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Thu, 31 Mar 2005 11:20:58 +0000 Subject: *** empty log message *** --- src/ChangeLog | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index eec09dac664..298445b7935 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,12 @@ +2005-03-31 Kenichi Handa + + * coding.c (syms_of_coding): Fix previous change. + +2005-03-25 Kenichi Handa + + * coding.c (syms_of_coding): Suggest to use set-coding-category in + the docstring of coding-category-list. + 2005-03-31 Kim F. Storm * keyboard.c (Qmouse_fixup_help_message): New var. -- cgit v1.2.1 From fafbb99d577133c09d38ef2aa315a7b583c38079 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Thu, 31 Mar 2005 11:22:55 +0000 Subject: *** empty log message *** --- src/ChangeLog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index 298445b7935..53469408d71 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,4 +1,4 @@ -2005-03-31 Kenichi Handa +2005-03-31 Kenichi Handa * coding.c (syms_of_coding): Fix previous change. -- cgit v1.2.1 From 6ca5360192fbe50abd5e43ba2ed28aa115af4d65 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Thu, 31 Mar 2005 22:43:13 +0000 Subject: Include ThreeD.h for XtNbeNiceToColormap. (x_create_toolkit_scroll_bar): Test XtNbeNiceToColormap before using it. Use XtNtopShadowPixel and XtNbottomShadowPixel. (x_set_toolkit_scroll_bar_thumb): Remove ugly old hack that didn't really work and that breaks with some versions of Xaw3d. --- src/ChangeLog | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index 53469408d71..258948bf5d3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,7 +1,19 @@ +2005-03-31 Stefan Monnier + + * xterm.c [HAVE_XAW3D]: Include ThreeD.h for XtNbeNiceToColormap. + (x_create_toolkit_scroll_bar): Test XtNbeNiceToColormap before using it. + Use XtNtopShadowPixel and XtNbottomShadowPixel. + (x_set_toolkit_scroll_bar_thumb): Remove ugly old hack that didn't + really work and that breaks with some versions of Xaw3d. + 2005-03-31 Kenichi Handa * coding.c (syms_of_coding): Fix previous change. +2005-03-30 Stefan Monnier + + * fileio.c (search_embedded_absfilename): Fix last change. + 2005-03-25 Kenichi Handa * coding.c (syms_of_coding): Suggest to use set-coding-category in @@ -30,7 +42,7 @@ 2005-03-26 Lennart Borgman - * w32term.h (x_output): add focus_state. + * w32term.h (x_output): Add focus_state. * w32term.c (x_focus_changed, w32_detect_focus_change): New functions. (w32_read_socket) [WM_SETFOCUS]: Call w32_detect_focus_change. -- cgit v1.2.1 From 41639988b2b9fc7cb071b2936c5822a7f8c8a741 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Fri, 1 Apr 2005 01:12:22 +0000 Subject: *** empty log message *** --- src/ChangeLog | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index 258948bf5d3..517a0a2b479 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,23 @@ +<<<<<<< ChangeLog +2005-04-01 Kenichi Handa + + * lisp.h (Vascii_upcase_table, Vascii_canon_table, + Vascii_eqv_table): Extern them. + + * casetab.c (set_case_table): If standard is nonzero, setup + Vascii_upcase_table, Vascii_canon_table, and Vascii_eqv_table. + + * search.c (looking_at_1): Use current_buffer->case_canon_table, + not DOWNCASE_TABLE. + (string_match_1): Likewise. + (fast_c_string_match_ignore_case): Use Vascii_canon_table, not + Vascii_downcase_table. + (fast_string_match_ignore_case): Likewise. + (search_buffer): Fix checking of boyer-moore usability. + (boyer_moore): Calculate translate_prev_byte1/2/3 in advance. No + need of tranlating characters in PAT. Fix calculation of + simple_translate. + 2005-03-31 Stefan Monnier * xterm.c [HAVE_XAW3D]: Include ThreeD.h for XtNbeNiceToColormap. -- cgit v1.2.1 From 9cf97f2680013b54e00d1f7f9b4ea187a85c8357 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Fri, 1 Apr 2005 01:30:38 +0000 Subject: *** empty log message *** --- src/ChangeLog | 1 - 1 file changed, 1 deletion(-) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index 517a0a2b479..9518de3af8f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,4 +1,3 @@ -<<<<<<< ChangeLog 2005-04-01 Kenichi Handa * lisp.h (Vascii_upcase_table, Vascii_canon_table, -- cgit v1.2.1 From 1673df2e0d9f5c62211b6a9c89b6886ca288bde8 Mon Sep 17 00:00:00 2001 From: Jan Djärv Date: Sat, 2 Apr 2005 12:05:38 +0000 Subject: * alloc.c (allocate_string_data): Call BLOCK_INPUT before calling mallopt. * ralloc.c (r_alloc_init): Ditto. --- src/ChangeLog | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index 9518de3af8f..ef635f206bd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2005-04-02 Jan Dj,Ad(Brv + + * alloc.c (allocate_string_data): Call BLOCK_INPUT before calling + mallopt. + + * ralloc.c (r_alloc_init): Ditto. + 2005-04-01 Kenichi Handa * lisp.h (Vascii_upcase_table, Vascii_canon_table, -- cgit v1.2.1 From 2ba613a6aae7549399043fb350ef61710f792e57 Mon Sep 17 00:00:00 2001 From: Kim F. Storm Date: Sun, 3 Apr 2005 22:08:17 +0000 Subject: *** empty log message *** --- src/ChangeLog | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index ef635f206bd..c996cdb5f8b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2005-04-04 Kim F. Storm + + * eval.c (Ffuncall): Always call CHECK_CONS_LIST on entry. + Call it again after autoload. + 2005-04-02 Jan Dj,Ad(Brv * alloc.c (allocate_string_data): Call BLOCK_INPUT before calling -- cgit v1.2.1 From 4d5ddddce81222d58dcaa8840fe68c2fe4ecc7dc Mon Sep 17 00:00:00 2001 From: Kim F. Storm Date: Sun, 3 Apr 2005 22:26:43 +0000 Subject: *** empty log message *** --- src/ChangeLog | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index c996cdb5f8b..34bf8b41b45 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2005-04-04 Kim F. Storm + * alloc.c (Fgarbage_collect): Call CHECK_CONS_LIST before and after gc. + * eval.c (Ffuncall): Always call CHECK_CONS_LIST on entry. Call it again after autoload. -- cgit v1.2.1