diff options
author | Jim Meyering <jim@meyering.net> | 2007-07-11 14:31:00 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-07-11 14:31:00 +0000 |
commit | 66691365d1d65277a6bef33f957b66b4bfb66d37 (patch) | |
tree | edd7f3254c496a0468ef8365a2928fa287dc7206 | |
parent | b1cb107cca432f369f86f3cf96ca8e23fafe830e (diff) | |
download | idutils-66691365d1d65277a6bef33f957b66b4bfb66d37.tar.gz idutils-66691365d1d65277a6bef33f957b66b4bfb66d37.tar.bz2 idutils-66691365d1d65277a6bef33f957b66b4bfb66d37.zip |
Adjust idutils.el comments to work with package.el.
* lisp/idutils.el: Fix comments.
(gid): Add autoload comment.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lisp/idutils.el | 7 |
2 files changed, 12 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2007-07-10 Tom Tromey <tromey@redhat.com> + + Adjust idutils.el comments to work with package.el. + * lisp/idutils.el: Fix comments. + (gid): Add autoload comment. + 2007-06-26 Tom Tromey <tromey@redhat.com> Don't treat the last line in the gid buffer as a match. diff --git a/lisp/idutils.el b/lisp/idutils.el index 019a646..5ced95d 100644 --- a/lisp/idutils.el +++ b/lisp/idutils.el @@ -1,7 +1,9 @@ -;;; idutils.el -- emacs interface to `lid -R grep', a.k.a. `gid' +;;; idutils.el --- emacs interface to `lid -R grep', a.k.a. `gid' ;;; Copyright (C) 1995, 1996, 2006, 2007 Free Software Foundation, Inc. ;;; Greg McGary <gkm@gnu.ai.mit.edu>. +;; Version: 4.2 + ;; This file is part of GNU idutils. ;; GNU idutils is free software; you can redistribute it and/or modify @@ -47,6 +49,7 @@ "Specialization of compilation-mode for use with gid." nil) +;;;###autoload (defun gid (args) "Run gid, with user-specified ARGS, and collect output in a buffer. While gid runs asynchronously, you can use the \\[next-error] command to @@ -66,3 +69,5 @@ defined by the gid-command variable." (regexp-quote args)))) (provide 'idutils) + +;;; idutils.el ends here |