diff options
author | Jim Meyering <meyering@redhat.com> | 2008-02-09 17:11:27 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-02-09 17:11:27 +0100 |
commit | 167e21409753677aa0419db092370d589c2c2b65 (patch) | |
tree | 021915074e1d1a809f880f4b9d50364ee02bd2ca /lisp/idutils.el | |
parent | e78ecac0252614dbde485f5426efa051ca1b210f (diff) | |
download | idutils-167e21409753677aa0419db092370d589c2c2b65.tar.gz idutils-167e21409753677aa0419db092370d589c2c2b65.tar.bz2 idutils-167e21409753677aa0419db092370d589c2c2b65.zip |
* lisp/idutils.el (gid): Use read-string, not deprecated read-input.
Diffstat (limited to 'lisp/idutils.el')
-rw-r--r-- | lisp/idutils.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/idutils.el b/lisp/idutils.el index ea6f7b7..c933219 100644 --- a/lisp/idutils.el +++ b/lisp/idutils.el @@ -51,7 +51,7 @@ While gid runs asynchronously, you can use the \\[next-error] command to find the text that gid hits refer to. The command actually run is defined by the gid-command variable." - (interactive (list (read-input + (interactive (list (read-string (concat "Run " gid-command " (with args): ") (thing-at-point 'symbol)))) (let (compile-command (compilation-error-regexp-alist grep-regexp-alist) |