Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
98a37e60
Unverified
Commit
98a37e60
authored
Sep 26, 2017
by
John Wiegley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lisp/simple.el: Indicate when a list of pairs is meant in a docstring
parent
1e594964
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/simple.el
lisp/simple.el
+2
-2
No files found.
lisp/simple.el
View file @
98a37e60
...
...
@@ -1003,7 +1003,7 @@ Called with one argument METHOD.
If METHOD is `delete-only', then delete the region; the return value
is undefined. If METHOD is nil, then return the content as a string.
If METHOD is `bounds', then return the boundaries of the region
as a pair of (START . END) positions.
as a
list of
pair
s
of (START . END) positions.
If METHOD is anything else, delete the region and return its content
as a string, after filtering it with `filter-buffer-substring', which
is called with METHOD as its 3rd argument."
)
...
...
@@ -5473,7 +5473,7 @@ also checks the value of `use-empty-active-region'."
(
progn
(
cl-assert
(
mark
))
t
)))
(
defun
region-bounds
()
"Return the boundaries of the region as a pair of (START . END) positions."
"Return the boundaries of the region as a
list of
pair
s
of (START . END) positions."
(
funcall
region-extract-function
'bounds
))
(
defun
region-noncontiguous-p
()
...
...
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