aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2007-06-27 11:36:59 +0000
committerJuanma Barranquero2007-06-27 11:36:59 +0000
commita66f285afd7447e1d8d69ba1afa53fd3cb69cf43 (patch)
treee14a8654f879312b0e144dd8901685efcab1cb2e /src
parent70c8363080a613b78d24d1c7b58a062321fc44c8 (diff)
downloademacs-a66f285afd7447e1d8d69ba1afa53fd3cb69cf43.tar.gz
emacs-a66f285afd7447e1d8d69ba1afa53fd3cb69cf43.zip
(syms_of_buffer) <selective-display>: Fix typo in docstring.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog10
-rw-r--r--src/buffer.c4
2 files changed, 9 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 024c019c4c0..e89ed8d3ea3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12007-06-27 Juanma Barranquero <lekktu@gmail.com>
2
3 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
4
12007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 52007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 6
3 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h. 7 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
@@ -10619,7 +10623,7 @@
10619 (XTread_socket) [!MAC_OSX]: Don't pass keyboard events to TSM. 10623 (XTread_socket) [!MAC_OSX]: Don't pass keyboard events to TSM.
10620 [MAC_OS8] (make_mac_terminal_frame) [TARGET_API_MAC_CARBON]: 10624 [MAC_OS8] (make_mac_terminal_frame) [TARGET_API_MAC_CARBON]:
10621 Set default cursors. 10625 Set default cursors.
10622 (mac_initialize) [USE_CARBON_EVENTS && !MAC_OSX] : Don't call 10626 (mac_initialize) [USE_CARBON_EVENTS && !MAC_OSX]: Don't call
10623 init_service_handler or init_quit_char_handler. 10627 init_service_handler or init_quit_char_handler.
10624 (mac_initialize) [!MAC_OSX]: Don't call MakeMeTheFrontProcess. 10628 (mac_initialize) [!MAC_OSX]: Don't call MakeMeTheFrontProcess.
10625 10629
@@ -11556,7 +11560,7 @@
11556 (install_window_handler) [TARGET_API_MAC_CARBON]: 11560 (install_window_handler) [TARGET_API_MAC_CARBON]:
11557 Register handlers for tracking/receiving drag-and-drop items. 11561 Register handlers for tracking/receiving drag-and-drop items.
11558 (do_ae_open_documents): Generate unibyte strings for filenames. 11562 (do_ae_open_documents): Generate unibyte strings for filenames.
11559 (mac_do_receive_drag) [TARGET_API_MAC_CARBON] : Likewise. 11563 (mac_do_receive_drag) [TARGET_API_MAC_CARBON]: Likewise.
11560 Reject only non-filename items. Set event modifiers, and return value. 11564 Reject only non-filename items. Set event modifiers, and return value.
11561 11565
115622004-12-28 Dan Nicolaescu <dann@ics.uci.edu> 115662004-12-28 Dan Nicolaescu <dann@ics.uci.edu>
@@ -15946,7 +15950,7 @@
15946 15950
15947 * macgui.h [MAC_OSX]: Include Carbon/Carbon.h. 15951 * macgui.h [MAC_OSX]: Include Carbon/Carbon.h.
15948 (mktime, DEBUG, Z, free, malloc, realloc, max, min) 15952 (mktime, DEBUG, Z, free, malloc, realloc, max, min)
15949 (init_process) [MAC_OSX] : Avoid conflicts with Carbon/Carbon.h. 15953 (init_process) [MAC_OSX]: Avoid conflicts with Carbon/Carbon.h.
15950 [!MAC_OSX]: Include QDOffscreen.h and Controls.h. 15954 [!MAC_OSX]: Include QDOffscreen.h and Controls.h.
15951 (INFINITY) [MAC_OSX]: Avoid conflict with definition in math.h. 15955 (INFINITY) [MAC_OSX]: Avoid conflict with definition in math.h.
15952 (Bitmap): Remove typedef. 15956 (Bitmap): Remove typedef.
diff --git a/src/buffer.c b/src/buffer.c
index 94955ed7c24..368da4763a5 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5652,8 +5652,8 @@ Backing up is done before the first time the file is saved. */);
5652 DEFVAR_PER_BUFFER ("selective-display", &current_buffer->selective_display, 5652 DEFVAR_PER_BUFFER ("selective-display", &current_buffer->selective_display,
5653 Qnil, 5653 Qnil,
5654 doc: /* Non-nil enables selective display. 5654 doc: /* Non-nil enables selective display.
5655An Integer N as value means display only lines 5655An integer N as value means display only lines
5656that start with less than n columns of space. 5656that start with less than N columns of space.
5657A value of t means that the character ^M makes itself and 5657A value of t means that the character ^M makes itself and
5658all the rest of the line invisible; also, when saving the buffer 5658all the rest of the line invisible; also, when saving the buffer
5659in a file, save the ^M as a newline. */); 5659in a file, save the ^M as a newline. */);