diff options
| author | Richard M. Stallman | 1998-03-14 04:46:55 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-03-14 04:46:55 +0000 |
| commit | f91a1ff18bc1a4f64317ad78dbfdb8855e680c44 (patch) | |
| tree | 3716a45d54dd94f8e63568c7aefe012330dc1640 | |
| parent | ef4aaf5f1c48222c31ddd68ab5859f706b0f1c3b (diff) | |
| download | emacs-f91a1ff18bc1a4f64317ad78dbfdb8855e680c44.tar.gz emacs-f91a1ff18bc1a4f64317ad78dbfdb8855e680c44.zip | |
(rlogin-parse-words): store-match-data => set-match-data.
| -rw-r--r-- | lisp/rlogin.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/rlogin.el b/lisp/rlogin.el index 76b8626963b..435765f3b4c 100644 --- a/lisp/rlogin.el +++ b/lisp/rlogin.el | |||
| @@ -6,7 +6,7 @@ | |||
| 6 | ;; Maintainer: Noah Friedman <friedman@prep.ai.mit.edu> | 6 | ;; Maintainer: Noah Friedman <friedman@prep.ai.mit.edu> |
| 7 | ;; Keywords: unix, comm | 7 | ;; Keywords: unix, comm |
| 8 | 8 | ||
| 9 | ;; $Id: rlogin.el,v 1.39 1997/05/05 01:00:35 rms Exp $ | 9 | ;; $Id: rlogin.el,v 1.40 1997/06/23 08:22:53 friedman Exp rms $ |
| 10 | 10 | ||
| 11 | ;; This file is part of GNU Emacs. | 11 | ;; This file is part of GNU Emacs. |
| 12 | 12 | ||
| @@ -320,7 +320,7 @@ local one share the same directories (through NFS)." | |||
| 320 | (setq list (cons (substring line (match-beginning 0) (match-end 0)) | 320 | (setq list (cons (substring line (match-beginning 0) (match-end 0)) |
| 321 | list)) | 321 | list)) |
| 322 | (setq posn (match-end 0))) | 322 | (setq posn (match-end 0))) |
| 323 | (store-match-data (match-data)) | 323 | (set-match-data (match-data)) |
| 324 | (nreverse list))) | 324 | (nreverse list))) |
| 325 | 325 | ||
| 326 | (defun rlogin-carriage-filter (string) | 326 | (defun rlogin-carriage-filter (string) |