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
2cec368c
Commit
2cec368c
authored
Dec 07, 2012
by
Martin Rudalics
Browse files
Reword doc-string of Fcompare_buffer_substrings.
* editfns.c (Fcompare_buffer_substrings): Reword doc-string.
parent
3a21537c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
4 deletions
+12
-4
etc/NEWS
etc/NEWS
+4
-0
src/ChangeLog
src/ChangeLog
+4
-0
src/editfns.c
src/editfns.c
+4
-4
No files found.
etc/NEWS
View file @
2cec368c
...
...
@@ -701,6 +701,10 @@ depends on the graphical library.
that substring is inserted literally even if the LITERAL arg is
non-nil, instead of causing an error to be signaled.
+++
**
`select-window' now always makes the window's buffer current.
It does so even if the window was selected before.
+++
**
Docstrings starting with `*' no longer indicate user options.
Only variables defined using `defcustom' are considered user options.
...
...
src/ChangeLog
View file @
2cec368c
2012-12-07 Martin Rudalics <rudalics@gmx.at>
* editfns.c (Fcompare_buffer_substrings): Reword doc-string.
2012-12-05 Eli Zaretskii <eliz@gnu.org>
* callproc.c (Fcall_process_region) [!HAVE_MKSTEMP]: If mktemp
...
...
src/editfns.c
View file @
2cec368c
...
...
@@ -2650,10 +2650,10 @@ They default to the values of (point-min) and (point-max) in BUFFER. */)
DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, Scompare_buffer_substrings,
6, 6, 0,
doc: /* Compare two substrings of two buffers; return result as number.
the value is
-N if first string is less after N-1 chars,
+N if first string is
greater after N-1 chars, or 0 if strings match.
Each substring is
represented as three arguments: BUFFER, START and END.
That makes six
args in all, three for each substring.
Return
-N if first string is less after N-1 chars,
+N if first string is
greater after N-1 chars, or 0 if strings match.
Each substring is
represented as three arguments: BUFFER, START and END.
That makes six
args in all, three for each substring.
The value of `case-fold-search' in the current buffer
determines whether case is significant or ignored. */)
...
...
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