aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2010-07-27 04:10:05 +0200
committerJuanma Barranquero2010-07-27 04:10:05 +0200
commit0ed082fedf31241b54ef2294c29c4880a7472e0e (patch)
tree096e3bcc109e439b48fb299bae744d58f3d09377 /src
parentaa2d4bd3438df0855c168c960e03d1f8ea25ae71 (diff)
parent4ce5a4ccd4cca6dcdc6d8bafa8cfaea1986e7e6e (diff)
downloademacs-0ed082fedf31241b54ef2294c29c4880a7472e0e.tar.gz
emacs-0ed082fedf31241b54ef2294c29c4880a7472e0e.zip
Merge from emacs-23
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog10
-rw-r--r--src/buffer.c8
-rw-r--r--src/minibuf.c2
-rw-r--r--src/window.c5
4 files changed, 19 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 9428bd4c0bc..706a6ae3aeb 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,13 @@
12010-07-27 Christoph Scholtes <cschol2112@gmail.com>
2
3 * minibuf.c (Fread_buffer): Doc fix (bug#6528).
4
5 * window.c (Fwindow_height): Doc fix (bug#6518).
6
72010-07-27 Juanma Barranquero <lekktu@gmail.com>
8
9 * buffer.c (syms_of_buffer) <fringe-indicator-alist>: Doc fix.
10
12010-07-26 Dan Nicolaescu <dann@ics.uci.edu> 112010-07-26 Dan Nicolaescu <dann@ics.uci.edu>
2 12
3 * keyboard.c (Ftop_level, Fexit_recursive_edit) 13 * keyboard.c (Ftop_level, Fexit_recursive_edit)
diff --git a/src/buffer.c b/src/buffer.c
index ac39219e61e..a90262fc557 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5899,14 +5899,14 @@ fringe indicator.
5899 5899
5900INDICATOR specifies the logical indicator type which is one of the 5900INDICATOR specifies the logical indicator type which is one of the
5901following symbols: `truncation' , `continuation', `overlay-arrow', 5901following symbols: `truncation' , `continuation', `overlay-arrow',
5902`top', `bottom', `up', `down', `one-line', `empty-line', or `unknown'. 5902`top', `bottom', `top-bottom', `up', `down', empty-line', or `unknown'.
5903 5903
5904BITMAPS is list of symbols (LEFT RIGHT [LEFT1 RIGHT1]) which specifies 5904BITMAPS is a list of symbols (LEFT RIGHT [LEFT1 RIGHT1]) which specifies
5905the actual bitmap shown in the left or right fringe for the logical 5905the actual bitmap shown in the left or right fringe for the logical
5906indicator. LEFT and RIGHT are the bitmaps shown in the left and/or 5906indicator. LEFT and RIGHT are the bitmaps shown in the left and/or
5907right fringe for the specific indicator. The LEFT1 or RIGHT1 bitmaps 5907right fringe for the specific indicator. The LEFT1 or RIGHT1 bitmaps
5908are used only for the `bottom' and `one-line' indicators when the last 5908are used only for the `bottom' and `top-bottom' indicators when the
5909\(only) line in has no final newline. BITMAPS may also be a single 5909last (only) line has no final newline. BITMAPS may also be a single
5910symbol which is used in both left and right fringes. */); 5910symbol which is used in both left and right fringes. */);
5911 5911
5912 DEFVAR_PER_BUFFER ("fringe-cursor-alist", 5912 DEFVAR_PER_BUFFER ("fringe-cursor-alist",
diff --git a/src/minibuf.c b/src/minibuf.c
index 5dc7b0b1f06..01478c2d5bd 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -1152,7 +1152,7 @@ Optional second arg DEF is value to return if user enters an empty line.
1152 If DEF is a list of default values, return its first element. 1152 If DEF is a list of default values, return its first element.
1153Optional third arg REQUIRE-MATCH determines whether non-existing 1153Optional third arg REQUIRE-MATCH determines whether non-existing
1154 buffer names are allowed. It has the same meaning as the 1154 buffer names are allowed. It has the same meaning as the
1155 REQUIRE-MATCH argument of `confirm-after-completion'. 1155 REQUIRE-MATCH argument of `completing-read'.
1156The argument PROMPT should be a string ending with a colon and a space. 1156The argument PROMPT should be a string ending with a colon and a space.
1157If `read-buffer-completion-ignore-case' is non-nil, completion ignores 1157If `read-buffer-completion-ignore-case' is non-nil, completion ignores
1158case while reading the buffer name. 1158case while reading the buffer name.
diff --git a/src/window.c b/src/window.c
index 89563112628..662b587150d 100644
--- a/src/window.c
+++ b/src/window.c
@@ -508,7 +508,10 @@ DEFUN ("window-height", Fwindow_height, Swindow_height, 0, 1, 0,
508 doc: /* Return the number of lines in WINDOW. 508 doc: /* Return the number of lines in WINDOW.
509WINDOW defaults to the selected window. 509WINDOW defaults to the selected window.
510 510
511The return value includes WINDOW's mode line and header line, if any. */) 511The return value includes WINDOW's mode line and header line, if any.
512
513Note: The function does not take into account the value of `line-spacing'
514when calculating the number of lines in WINDOW. */)
512 (Lisp_Object window) 515 (Lisp_Object window)
513{ 516{
514 return decode_any_window (window)->total_lines; 517 return decode_any_window (window)->total_lines;