1 Some lisp/emacs-lisp/ Features and Where They Are Documented
3 Copyright (C) 2007-2011 Free Software Foundation, Inc.
4 See the end of the file for license conditions.
9 n/a -- not applicable (internal, uninteresting, etc)
10 todo -- not documented but should be
11 NODE -- documented in or under info node NODE
15 advice (elisp) Advising Functions
19 autoload (elisp) Autoload
23 bindat (elisp) Byte Packing
24 byte-compile (elisp) Byte Compilation
26 bytecomp (elisp) Compilation Functions
27 checkdoc (elisp) Documentation Tips
34 cust-print (elisp) Printing in Edebug
35 debug (elisp) Debugger
36 derived (elisp) Derived Modes
37 disass (elisp) Disassembly
38 easy-mmode (elisp) Defining Minor Modes
44 ewoc (elisp) Separated Rendering
47 generic (elisp) Generic Modes
57 macroexp (elisp) Expansion
58 pp (emacs) Program Indent
60 regexp-opt (elisp) Regexp Functions
66 syntax (elisp) Position Parse
69 tq (elisp) Transaction Queues
71 unsafep (elisp) Function Safety
72 warnings (elisp) Warnings
75 * Above list created using default directory lisp/emacs-lisp/ with
77 "sed '/^(provide '\\''/!d;s// /;s/).*//' *.el | sort | uniq")
80 * How to use this file to improve Emacs
82 (let* ((feature (choose-one Features))
83 (status (feature-status feature)))
84 (if (or (eq '- status) (not (verify status)))
85 (update feature (current-docs feature))
87 (todo (let (doc patch feedback)
88 (while (not (grok feature))
89 (or (play-with feature)
90 (grep feature Internet)
91 (grep feature (wisdom-maybe "emacs-devel"))))
92 (setq doc (write-documentation feature)
93 patch (diff (current-docs) doc))
94 (while (not (and (correct doc)
97 (setq doc (revise doc)
98 patch (diff (current-docs) doc))
99 feedback (wisdom-maybe "emacs-devel" patch))
100 (when (install patch)
101 (when (update feature (current-docs feature))
102 (job-well-done user-login-name)))))
103 (n/a (job-well-done user-login-name))))))
108 This file is part of GNU Emacs.
110 GNU Emacs is free software: you can redistribute it and/or modify
111 it under the terms of the GNU General Public License as published by
112 the Free Software Foundation, either version 3 of the License, or
113 (at your option) any later version.
115 GNU Emacs is distributed in the hope that it will be useful,
116 but WITHOUT ANY WARRANTY; without even the implied warranty of
117 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
118 GNU General Public License for more details.
120 You should have received a copy of the GNU General Public License
121 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.