Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
251db0f4
Commit
251db0f4
authored
Jun 27, 2007
by
Juanma Barranquero
Browse files
(syms_of_buffer) <selective-display>: Fix typo in docstring.
parent
56f3136b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
src/ChangeLog
src/ChangeLog
+7
-3
src/buffer.c
src/buffer.c
+2
-2
No files found.
src/ChangeLog
View file @
251db0f4
2007-06-27 Juanma Barranquero <lekktu@gmail.com>
* buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
...
...
@@ -10210,7 +10214,7 @@
(XTread_socket) [!MAC_OSX]: Don't pass keyboard events to TSM.
[MAC_OS8] (make_mac_terminal_frame) [TARGET_API_MAC_CARBON]:
Set default cursors.
(mac_initialize) [USE_CARBON_EVENTS && !MAC_OSX]
: Don't call
(mac_initialize) [USE_CARBON_EVENTS && !MAC_OSX]: Don't call
init_service_handler or init_quit_char_handler.
(mac_initialize) [!MAC_OSX]: Don't call MakeMeTheFrontProcess.
...
...
@@ -11147,7 +11151,7 @@
(install_window_handler) [TARGET_API_MAC_CARBON]:
Register handlers for tracking/receiving drag-and-drop items.
(do_ae_open_documents): Generate unibyte strings for filenames.
(mac_do_receive_drag) [TARGET_API_MAC_CARBON]
: Likewise.
(mac_do_receive_drag) [TARGET_API_MAC_CARBON]: Likewise.
Reject only non-filename items. Set event modifiers, and return value.
2004-12-28 Dan Nicolaescu <dann@ics.uci.edu>
...
...
@@ -15537,7 +15541,7 @@
* macgui.h [MAC_OSX]: Include Carbon/Carbon.h.
(mktime, DEBUG, Z, free, malloc, realloc, max, min)
(init_process) [MAC_OSX]
: Avoid conflicts with Carbon/Carbon.h.
(init_process) [MAC_OSX]: Avoid conflicts with Carbon/Carbon.h.
[!MAC_OSX]: Include QDOffscreen.h and Controls.h.
(INFINITY) [MAC_OSX]: Avoid conflict with definition in math.h.
(Bitmap): Remove typedef.
...
...
src/buffer.c
View file @
251db0f4
...
...
@@ -5652,8 +5652,8 @@ Backing up is done before the first time the file is saved. */);
DEFVAR_PER_BUFFER
(
"selective-display"
,
&
current_buffer
->
selective_display
,
Qnil
,
doc:
/* Non-nil enables selective display.
An
I
nteger N as value means display only lines
that start with less than
n
columns of space.
An
i
nteger N as value means display only lines
that start with less than
N
columns of space.
A value of t means that the character ^M makes itself and
all the rest of the line invisible; also, when saving the buffer
in a file, save the ^M as a newline. */
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment