summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--lisp/idutils.el7
2 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a1f6f7f..1973ae5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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