aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMiles Bader2005-08-05 10:57:36 +0000
committerMiles Bader2005-08-05 10:57:36 +0000
commit5e10f34207ff594cd6570928bc0292a7b53297b8 (patch)
treed03b31da4d83d4a49fac3162e5481b77849754d5 /src
parent07bd7822113da5ae28d0db471453622a2ed5d6cd (diff)
parent11e22c4a01e2535ad784e0d122a65837a13ec71c (diff)
downloademacs-5e10f34207ff594cd6570928bc0292a7b53297b8.tar.gz
emacs-5e10f34207ff594cd6570928bc0292a7b53297b8.zip
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-77
Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 504-513) - Update from CVS - Merge from gnus--rel--5.10 - Update from CVS: .cvsignore: Add `lock'. * gnus--rel--5.10 (patch 99-103) - Update from CVS
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog14
-rw-r--r--src/frame.c3
-rw-r--r--src/xdisp.c8
3 files changed, 22 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index e23f9bdacbf..fb8664b9fb6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,12 @@
12005-08-02 Richard M. Stallman <rms@gnu.org>
2
3 * frame.c (Fframe_char_width): Doc fix.
4
52005-07-30 Juanma Barranquero <lekktu@gmail.com>
6
7 * xdisp.c (syms_of_xdisp) <redisplay-end-trigger-functions>:
8 Defvar it.
9
12005-07-28 Juanma Barranquero <lekktu@gmail.com> 102005-07-28 Juanma Barranquero <lekktu@gmail.com>
2 11
3 * w32fns.c (my_set_window_pos, my_show_window): Don't declare. 12 * w32fns.c (my_set_window_pos, my_show_window): Don't declare.
@@ -130,6 +139,11 @@
130 * w32fns.c (Vx_hand_shape): Variable removed. 139 * w32fns.c (Vx_hand_shape): Variable removed.
131 (syms_of_w32fns): Intern and staticpro Qw32_charset_default. 140 (syms_of_w32fns): Intern and staticpro Qw32_charset_default.
132 141
1422005-07-19 Kenichi Handa <handa@m17n.org>
143
144 * fns.c (Fstring_as_multibyte): Escape backslashes in the
145 docstring.
146
1332005-07-18 Stefan Monnier <monnier@iro.umontreal.ca> 1472005-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
134 148
135 * buffer.h (Fgenerate_new_buffer_name): Declare (for use in coding.c). 149 * buffer.h (Fgenerate_new_buffer_name): Declare (for use in coding.c).
diff --git a/src/frame.c b/src/frame.c
index a9f006ae8e0..436bc45cd3d 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -2353,8 +2353,7 @@ DEFUN ("frame-char-width", Fframe_char_width, Sframe_char_width,
2353 0, 1, 0, 2353 0, 1, 0,
2354 doc: /* Width in pixels of characters in the font in frame FRAME. 2354 doc: /* Width in pixels of characters in the font in frame FRAME.
2355If FRAME is omitted, the selected frame is used. 2355If FRAME is omitted, the selected frame is used.
2356The width is the same for all characters, because 2356On a graphical screen, the width is the standard width of the default font.
2357currently Emacs supports only fixed-width fonts.
2358For a terminal screen, the value is always 1. */) 2357For a terminal screen, the value is always 1. */)
2359 (frame) 2358 (frame)
2360 Lisp_Object frame; 2359 Lisp_Object frame;
diff --git a/src/xdisp.c b/src/xdisp.c
index f1316969577..5ba2b847600 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -232,7 +232,7 @@ extern Lisp_Object Qhelp_echo;
232 232
233Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map; 233Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map;
234Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions; 234Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions;
235Lisp_Object Qredisplay_end_trigger_functions; 235Lisp_Object Qredisplay_end_trigger_functions, Vredisplay_end_trigger_functions;
236Lisp_Object Qinhibit_point_motion_hooks; 236Lisp_Object Qinhibit_point_motion_hooks;
237Lisp_Object QCeval, QCfile, QCdata, QCpropertize; 237Lisp_Object QCeval, QCfile, QCdata, QCpropertize;
238Lisp_Object Qfontified; 238Lisp_Object Qfontified;
@@ -23277,6 +23277,12 @@ and its new display-start position. Note that the value of `window-end'
23277is not valid when these functions are called. */); 23277is not valid when these functions are called. */);
23278 Vwindow_scroll_functions = Qnil; 23278 Vwindow_scroll_functions = Qnil;
23279 23279
23280 DEFVAR_LISP ("redisplay-end-trigger-functions", &Vredisplay_end_trigger_functions,
23281 doc: /* Functions called when redisplay of a window reaches the end trigger.
23282Each function is called with two arguments, the window and the end trigger value.
23283See `set-window-redisplay-end-trigger'. */);
23284 Vredisplay_end_trigger_functions = Qnil;
23285
23280 DEFVAR_BOOL ("mouse-autoselect-window", &mouse_autoselect_window, 23286 DEFVAR_BOOL ("mouse-autoselect-window", &mouse_autoselect_window,
23281 doc: /* *Non-nil means autoselect window with mouse pointer. */); 23287 doc: /* *Non-nil means autoselect window with mouse pointer. */);
23282 mouse_autoselect_window = 0; 23288 mouse_autoselect_window = 0;