(calendar-chinese-all-holidays-flag): New.
[emacs.git] / lisp / obsolete / options.el
bloba5b96dc414d66bf21dbd0603d6c986968c67c848
1 ;;; options.el --- edit Options command for Emacs
3 ;; Copyright (C) 1985, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Maintainer: FSF
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 3, or (at your option)
13 ;; any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
25 ;;; Commentary:
27 ;; This file has been obsolete since Emacs 22.1.
29 ;; This code provides functions to list and edit the values of all global
30 ;; option variables known to loaded Emacs Lisp code. There are two entry
31 ;; points, `list-options' and `edit' options'. The latter enters a major
32 ;; mode specifically for editing option values. Do `M-x describe-mode' in
33 ;; that context for more details.
35 ;; The customization buffer feature is intended to make this obsolete.
37 ;;; Code:
39 ;;;###autoload
40 (defun list-options ()
41 "Display a list of Emacs user options, with values and documentation.
42 It is now better to use Customize instead."
43 (interactive)
44 (with-output-to-temp-buffer "*List Options*"
45 (let (vars)
46 (princ "This facility is obsolete; we recommend using M-x customize instead.")
48 (mapatoms (function (lambda (sym)
49 (if (user-variable-p sym)
50 (setq vars (cons sym vars))))))
51 (setq vars (sort vars 'string-lessp))
52 (while vars
53 (let ((sym (car vars)))
54 (when (boundp sym)
55 (princ ";; ")
56 (prin1 sym)
57 (princ ":\n\t")
58 (prin1 (symbol-value sym))
59 (terpri)
60 (princ (substitute-command-keys
61 (documentation-property sym 'variable-documentation)))
62 (princ "\n;;\n"))
63 (setq vars (cdr vars))))
64 (with-current-buffer "*List Options*"
65 (Edit-options-mode)
66 (setq buffer-read-only t)))))
68 ;;;###autoload
69 (defun edit-options ()
70 "Edit a list of Emacs user option values.
71 Selects a buffer containing such a list,
72 in which there are commands to set the option values.
73 Type \\[describe-mode] in that buffer for a list of commands.
75 The Custom feature is intended to make this obsolete."
76 (interactive)
77 (list-options)
78 (pop-to-buffer "*List Options*"))
80 (defvar Edit-options-mode-map
81 (let ((map (make-keymap)))
82 (define-key map "s" 'Edit-options-set)
83 (define-key map "x" 'Edit-options-toggle)
84 (define-key map "1" 'Edit-options-t)
85 (define-key map "0" 'Edit-options-nil)
86 (define-key map "p" 'backward-paragraph)
87 (define-key map " " 'forward-paragraph)
88 (define-key map "n" 'forward-paragraph)
89 map)
90 "")
92 ;; Edit Options mode is suitable only for specially formatted data.
93 (put 'Edit-options-mode 'mode-class 'special)
95 (defun Edit-options-mode ()
96 "\\<Edit-options-mode-map>\
97 Major mode for editing Emacs user option settings.
98 Special commands are:
99 \\[Edit-options-set] -- set variable point points at. New value read using minibuffer.
100 \\[Edit-options-toggle] -- toggle variable, t -> nil, nil -> t.
101 \\[Edit-options-t] -- set variable to t.
102 \\[Edit-options-nil] -- set variable to nil.
103 Changed values made by these commands take effect immediately.
105 Each variable description is a paragraph.
106 For convenience, the characters \\[backward-paragraph] and \\[forward-paragraph] move back and forward by paragraphs."
107 (kill-all-local-variables)
108 (set-syntax-table emacs-lisp-mode-syntax-table)
109 (use-local-map Edit-options-mode-map)
110 (make-local-variable 'paragraph-separate)
111 (setq paragraph-separate "[^\^@-\^?]")
112 (make-local-variable 'paragraph-start)
113 (setq paragraph-start "\t")
114 (setq truncate-lines t)
115 (setq major-mode 'Edit-options-mode)
116 (setq mode-name "Options")
117 (run-mode-hooks 'Edit-options-mode-hook))
119 (defun Edit-options-set () (interactive)
120 (Edit-options-modify
121 (lambda (var) (eval-minibuffer (concat "New " (symbol-name var) ": ")))))
123 (defun Edit-options-toggle () (interactive)
124 (Edit-options-modify (lambda (var) (not (symbol-value var)))))
126 (defun Edit-options-t () (interactive)
127 (Edit-options-modify (lambda (var) t)))
129 (defun Edit-options-nil () (interactive)
130 (Edit-options-modify (lambda (var) nil)))
132 (defun Edit-options-modify (modfun)
133 (save-excursion
134 (let ((buffer-read-only nil) var pos)
135 (re-search-backward "^;; \\|\\`")
136 (forward-char 3)
137 (setq pos (point))
138 (save-restriction
139 (narrow-to-region pos (progn (end-of-line) (1- (point))))
140 (goto-char pos)
141 (setq var (read (current-buffer))))
142 (goto-char pos)
143 (forward-line 1)
144 (forward-char 1)
145 (save-excursion
146 (set var (funcall modfun var)))
147 (kill-sexp 1)
148 (prin1 (symbol-value var) (current-buffer)))))
150 (provide 'options)
152 ;; arch-tag: d18211a1-f3fb-48c9-a449-d5acde406a3c
153 ;;; options.el ends here