emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/filesets.el [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/filesets.el [lexbind]
Date: Tue, 14 Oct 2003 19:51:55 -0400

Index: emacs/lisp/filesets.el
diff -c emacs/lisp/filesets.el:1.10.2.1 emacs/lisp/filesets.el:1.10.2.2
*** emacs/lisp/filesets.el:1.10.2.1     Fri Apr  4 01:20:05 2003
--- emacs/lisp/filesets.el      Tue Oct 14 19:51:03 2003
***************
*** 3,8 ****
--- 3,9 ----
  ;; Copyright (C) 2002 Free Software Foundation, Inc.
  
  ;; Author: Thomas Link <address@hidden>
+ ;; Maintainer: FSF
  ;; Keywords: filesets convenience
  
  ;; This file is part of GNU Emacs.
***************
*** 32,40 ****
  ;; pattern, a base directory and a search pattern (for files), or an
  ;; inclusion group (i.e. a base file including other files).
  
! ;; Usage: 1. Put (require 'filesets) into your start-up file.  2. Type
! ;; M-x filesets-edit or choose "Edit Filesets" from the menu.  3. Save
! ;; your customizations.
  
  ;; Caveat: Fileset names have to be unique.
  
--- 33,42 ----
  ;; pattern, a base directory and a search pattern (for files), or an
  ;; inclusion group (i.e. a base file including other files).
  
! ;; Usage:
! ;; 1. Put (require 'filesets) and (filesets-init) in your .emacs file.
! ;; 2. Type ;; M-x filesets-edit or choose "Edit Filesets" from the menu.
! ;; 3. Save your customizations.
  
  ;; Caveat: Fileset names have to be unique.
  
***************
*** 65,70 ****
--- 67,79 ----
  
  ;;- better handling of different customization scenarios
  
+ ;; Data gathering should be better separated from building the menu
+ ;; so that one could (1) use filesets without installing the menu
+ ;; and (2) create new "frontends" to speedbar and others.
+ 
+ ;; The functionality to call external viewers should be isolated in
+ ;; an extra package and possibly integrated with the MIME
+ ;; handling.
  
  ;;; Credits:
  
***************
*** 118,125 ****
  Is buffer local variable.")
  
  (defvar filesets-verbosity 1
!   "An integer defining the level of verbosity. 0 means no messages
! at all.")
  
  (defvar filesets-menu-ensure-use-cached
    (and filesets-running-xemacs
--- 127,134 ----
  Is buffer local variable.")
  
  (defvar filesets-verbosity 1
!   "An integer defining the level of verbosity.
! 0 means no messages at all.")
  
  (defvar filesets-menu-ensure-use-cached
    (and filesets-running-xemacs
***************
*** 263,268 ****
--- 272,279 ----
      (setq filesets-has-changed-flag t)))
  ;    (filesets-reset-fileset nil t)))
  
+ (defvar filesets-data)
+ 
  (defun filesets-data-set-default (sym val)
    "Set the default for `filesets-data'."
    (if filesets-menu-use-cached-flag
***************
*** 279,287 ****
        (dolist (x modified-filesets)
          (filesets-reset-fileset (car x))))))
    (filesets-set-default sym val))
! 
! 
! 
  ;;; configuration
  (defgroup filesets nil
    "The fileset swapper."
--- 290,296 ----
        (dolist (x modified-filesets)
          (filesets-reset-fileset (car x))))))
    (filesets-set-default sym val))
! 
  ;;; configuration
  (defgroup filesets nil
    "The fileset swapper."
***************
*** 1056,1063 ****
    :set (function filesets-set-default)
    :type 'integer
    :group 'filesets)
! 
! 
  ;;; Emacs compatibility
  (eval-and-compile
    (if filesets-running-xemacs
--- 1065,1071 ----
    :set (function filesets-set-default)
    :type 'integer
    :group 'filesets)
! 
  ;;; Emacs compatibility
  (eval-and-compile
    (if filesets-running-xemacs
***************
*** 2505,2517 ****
      (filesets-build-menu)))
  
  
- ;;; run
- (filesets-init)
- 
  (provide 'filesets)
  
  ;;; Local Variables:
  ;;; sentence-end-double-space:t
  ;;; End:
  
  ;;; filesets.el ends here
--- 2513,2523 ----
      (filesets-build-menu)))
  
  
  (provide 'filesets)
  
  ;;; Local Variables:
  ;;; sentence-end-double-space:t
  ;;; End:
  
+ ;;; arch-tag: 2c03f85f-c3df-4cec-b0a3-b46fd5592d70
  ;;; filesets.el ends here




reply via email to

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