[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
apropos+.el - extensions to GNU `apropos.el'
From: |
Drew Adams |
Subject: |
apropos+.el - extensions to GNU `apropos.el' |
Date: |
Wed, 17 Jan 2001 16:42:05 -0500 |
;;; apropos+.el --- Extensions to `apropos.el'
;;
;; Emacs Lisp Archive Entry
;; Filename: apropos+.el
;; Description: Extensions to `apropos.el'
;; Author: Drew Adams
;; Maintainer: Drew Adams
;; Copyright (C) 1996-2001, Drew Adams, all rights reserved.
;; Created: Thu Jun 22 15:07:30 2000
;; Version: $Id: apropos+.el,v 1.3 2001/01/08 22:15:52 dadams Exp $
;; Last-Updated: Mon Jan 8 14:15:04 2001
;; By: dadams
;; Update #: 22
;; Keywords: help
;; Compatibility: GNU Emacs 20.x
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Commentary:
;;
;; New command `apropos-user-options'.
;;
;; It only lists user-definable variables.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Change log:
;;
;; RCS $Log: apropos+.el,v $
;; RCS Revision 1.3 2001/01/08 22:15:52 dadams
;; RCS Adapted file header for Emacs Lisp Archive.
;; RCS
;; RCS Revision 1.2 2001/01/03 00:31:07 dadams
;; RCS *** empty log message ***
;; RCS
;; RCS Revision 1.1 2000/09/13 20:01:50 dadams
;; RCS Initial revision
;; RCS
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Code:
(require 'apropos)
(provide 'apropos+)
;;;;;;;;;;;;;;;;;;;;;;;;;
;;;###autoload
(defun apropos-user-options (regexp)
"Show user variables that match REGEXP."
(interactive (list (read-string "Apropos user options (regexp): ")))
(let ((apropos-do-all nil))
(apropos-variable regexp)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; `apropos+.el' ends here
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- apropos+.el - extensions to GNU `apropos.el',
Drew Adams <=