summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/edebug.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-04-07 17:16:44 +0000
committerRichard M. Stallman <rms@gnu.org>1994-04-07 17:16:44 +0000
commit2436ed313c06577e15b54322ddc0696073befbd0 (patch)
tree2bc679d72082d27d69f58b0eca115f9a6d3fa93f /lisp/emacs-lisp/edebug.el
parent91f8421856592e193b56fcfe2004d5ad11f6db4d (diff)
downloademacs-2436ed313c06577e15b54322ddc0696073befbd0.tar.gz
(edebug-version): Delete third arg of string-match.
Diffstat (limited to 'lisp/emacs-lisp/edebug.el')
-rw-r--r--lisp/emacs-lisp/edebug.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el
index 08699d89662..58c4041d2cd 100644
--- a/lisp/emacs-lisp/edebug.el
+++ b/lisp/emacs-lisp/edebug.el
@@ -8,9 +8,9 @@
;; LCD Archive Entry:
;; edebug|Daniel LaLiberte|liberte@cs.uiuc.edu
;; |A source level debugger for Emacs Lisp.
-;; |$Date: 1994/04/04 21:52:06 $|3.5|~/modes/edebug.el|
+;; |$Date: 1994/04/05 01:21:06 $|3.5|~/modes/edebug.el|
-;; Version 3.5 ($Revision: 1.18 $ from Emacs 19)
+;; Version 3.5 ($Revision: 1.19 $ from Emacs 19)
;; This file is part of GNU Emacs.
@@ -108,7 +108,7 @@
(defconst edebug-version
(let ((raw-version "3.5"))
- (substring raw-version (string-match "[0-9.]*" raw-version 11)
+ (substring raw-version (string-match "[0-9.]*" raw-version)
(match-end 0))))
(require 'backquote)