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
b3f6bcbd
Commit
b3f6bcbd
authored
Jan 28, 1995
by
Richard M. Stallman
Browse files
(match-string): Fix braino.
parent
1c738407
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/subr.el
lisp/subr.el
+2
-2
No files found.
lisp/subr.el
View file @
b3f6bcbd
...
...
@@ -887,8 +887,8 @@ Wildcards and redirection are handled as usual in the shell."
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
(
match-beginning
0
)
(
match-end
0
))))
(
substring
string
(
match-beginning
n
)
(
match-end
n
))
(
buffer-substring
(
match-beginning
n
)
(
match-end
n
))))
(
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