summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
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
commit1576fe1dcee16f00470e61616e6cb74753272b69 (patch)
treebdaf8ffad5c189b661cf93fa6e3891120c2daeb3 /lisp/emacs-lisp
parent947388af39d4f788d8fbcd440cfd42130c3305b1 (diff)
downloademacs-1576fe1dcee16f00470e61616e6cb74753272b69.tar.gz
emacs-1576fe1dcee16f00470e61616e6cb74753272b69.tar.bz2
emacs-1576fe1dcee16f00470e61616e6cb74753272b69.zip
(edebug-version): Delete third arg of string-match.
Diffstat (limited to 'lisp/emacs-lisp')
-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)