From: Karl Heuer Date: Fri, 27 Jan 1995 20:47:20 +0000 (+0000) Subject: (match-string): Delete extra arg to buffer-substring. X-Git-Tag: emacs-19.34~5289 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=44705c0e41bae1261423b418c65e3875700a4bf1;p=emacs.git (match-string): Delete extra arg to buffer-substring. --- diff --git a/lisp/subr.el b/lisp/subr.el index 21438419302..5d5470f9e24 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -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."