gnu-emacs-sources
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

cus-edit+.el - extensions to GNU `cus-edit.el'


From: Drew Adams
Subject: cus-edit+.el - extensions to GNU `cus-edit.el'
Date: Wed, 17 Jan 2001 16:42:05 -0500

;;; cus-edit+.el --- Remove "*Custimiz.*" from `same-window-regexps'.
;; 
;; Emacs Lisp Archive Entry
;; Filename: cus-edit+.el
;; Description: Remove "*Custimiz.*" from `same-window-regexps'.
;; Author: Drew Adams
;; Maintainer: Drew Adams
;; Copyright (C) 2000, 2001, Drew Adams, all rights reserved.
;; Created: Thu Jun 29 13:19:36 2000
;; Version: $Id: cus-edit+.el,v 1.3 2001/01/08 22:34:49 dadams Exp $
;; Last-Updated: Mon Jan  8 14:34:35 2001
;;           By: dadams
;;     Update #: 20
;; Keywords: help, customize
;; Compatibility: GNU Emacs 20.x
;; 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; 
;;; Commentary: 
;; 
;; Remove "*Custimiz.*" from `same-window-regexps'.
;;
;;  File `cus-edit.el' imposes keeping *Customiz.* buffers in the
;;  same window (via an ###autoload, no less).  Loading this file
;;  just removes that restriction.
;; 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; 
;;; Change log:
;; 
;; RCS $Log: cus-edit+.el,v $
;; RCS Revision 1.3  2001/01/08 22:34:49  dadams
;; RCS Adapted file header for Emacs Lisp Archive.
;; RCS
;; RCS Revision 1.2  2001/01/03 00:34:58  dadams
;; RCS *** empty log message ***
;; RCS
;; RCS Revision 1.1  2000/09/14 15:05:05  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 'cus-edit)

(provide 'cus-edit+)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;;###autoload (remove-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'")
(remove-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'")

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; `cus-edit+.el' ends here



reply via email to

[Prev in Thread] Current Thread [Next in Thread]