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
44705c0e
Commit
44705c0e
authored
Jan 27, 1995
by
Karl Heuer
Browse files
(match-string): Delete extra arg to buffer-substring.
parent
aee72e4f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lisp/subr.el
lisp/subr.el
+1
-1
No files found.
lisp/subr.el
View file @
44705c0e
...
...
@@ -888,7 +888,7 @@ If the last search or match was done against a string,
specify that string as the second argument STRING."
(
if
string
(
substring
string
(
match-beginning
0
)
(
match-end
0
))
(
buffer-substring
string
(
match-beginning
0
)
(
match-end
0
))))
(
buffer-substring
(
match-beginning
0
)
(
match-end
0
))))
(
defun
shell-quote-argument
(
argument
)
"Quote an argument for passing as argument to an inferior shell."
...
...
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