From 44705c0e41bae1261423b418c65e3875700a4bf1 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Fri, 27 Jan 1995 20:47:20 +0000 Subject: [PATCH] (match-string): Delete extra arg to buffer-substring. --- lisp/subr.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." -- 2.39.5