Mercurial > emacs
annotate doc/lispref/two.el @ 103273:c32ec20d0ab5
* abbrevs.texi (Abbrev Mode): abbrev-mode is an option.
* backups.texi (Making Backups): backup-directory-alist and
make-backup-file-name-function are options.
(Auto-Saving): auto-save-list-file-prefix is an option.
* buffers.texi (Killing Buffers): buffer-offer-save is an
option.
* display.texi (Refresh Screen): no-redraw-on-reenter is an
option.
(Echo Area Customization): echo-keystrokes is an option.
(Selective Display): selective-display-ellipses is an option.
(Temporary Displays): temp-buffer-show-function is an option.
(Face Attributes): underline-minimum-offset and x-bitmap-file-path
are options.
(Font Selection): face-font-family-alternatives,
face-font-selection-order, face-font-registry-alternatives, and
scalable-fonts-allowed are options.
(Fringe Indicators): indicate-buffer-boundaries is an option.
(Fringe Cursors): overflow-newline-into-fringe is an option.
(Scroll Bars): scroll-bar-mode is an option.
* eval.texi (Eval): max-lisp-eval-depth is an option.
* files.texi (Visiting Functions): find-file-hook is an option.
(Directory Names): directory-abbrev-alist is an option.
(Unique File Names): temporary-file-directory and
small-temporary-file-directory are options.
* frames.texi (Initial Parameters): initial-frame-alist,
minibuffer-frame-alist and default-frame-alist are options.
(Cursor Parameters): blink-cursor-alist and
cursor-in-non-selected-windows ar options.
(Window System Selections): selection-coding-system is an
option.
(Display Feature Testing): display-mm-dimensions-alist is an
option.
* help.texi (Help Functions): help-char and help-event-list are
options.
* keymaps.texi (Functions for Key Lookup): meta-prefix-char is
an option.
* minibuf.texi (Minibuffer History): history-length and
history-delete-duplicates are options.
(High-Level Completion): read-buffer-function and
read-buffer-completion-ignore-case are options.
(Reading File Names): read-file-name-completion-ignore-case is
an option.
* modes.texi (Mode Line Top): mode-line-format is an option.
(Mode Line Variables): mode-line-position and mode-line-modes
are options.
* nonascii.texi (Text Representations):
enable-multibyte-characters is an option.
(Default Coding Systems): auto-coding-regexp-alist,
file-coding-system-alist, auto-coding-alist and
auto-coding-functions are options.
(Specifying Coding Systems): inhibit-eol-conversion is an
option.
* os.texi (Init File): site-run-file is an option.
(System Environment): mail-host-address is an option.
(User Identification): user-mail-address is an option.
(Terminal Output): baud-rate is an option.
* positions.texi (Word Motion): words-include-escapes is an
option.
* searching.texi (Standard Regexps): page-delimiter,
paragraph-separate, paragraph-separate and sentence-end are
options.
* text.texi (Margins): left-margin and fill-nobreak-predicate
are options.
* variables.texi (Local Variables): max-specpdl-size is an
option.
* windows.texi (Choosing Window):
split-window-preferred-function, special-display-function and
display-buffer-function are options.
author | Martin Rudalics <rudalics@gmx.at> |
---|---|
date | Thu, 21 May 2009 15:31:31 +0000 |
parents | cb5d2387102c |
children | 1d1d5d9bd884 |
rev | line source |
---|---|
84108 | 1 ;; Auxiliary functions for preparing a two volume manual. |
2 | |
100974 | 3 ;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 |
84108 | 4 ;; Free Software Foundation, Inc. |
5 | |
6 ;; --rjc 30mar92 | |
7 | |
95035
fde6f792a832
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
8 ;; This file is free software: you can redistribute it and/or modify |
84108 | 9 ;; it under the terms of the GNU General Public License as published by |
95035
fde6f792a832
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
10 ;; the Free Software Foundation, either version 3 of the License, or |
fde6f792a832
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
11 ;; (at your option) any later version. |
84108 | 12 |
13 ;; This file is distributed in the hope that it will be useful, | |
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 ;; GNU General Public License for more details. | |
17 | |
18 ;; You should have received a copy of the GNU General Public License | |
95035
fde6f792a832
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
19 ;; along with this file. If not, see <http://www.gnu.org/licenses/>. |
fde6f792a832
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
20 |
84108 | 21 |
22 (defun volume-aux-markup (arg) | |
23 "Append `vol. NUMBER' to page number. | |
24 Apply to aux file that you save. | |
25 Then insert marked file into other volume's .aux file." | |
26 (interactive "sType volume number, 1 or 2: " ) | |
27 (goto-char (point-min)) | |
28 (while (search-forward "-pg" nil t) | |
29 (end-of-line 1) | |
30 (delete-backward-char 1 nil) | |
31 (insert ", vol.'tie" arg "}"))) | |
32 | |
33 (defun volume-index-markup (arg) | |
34 "Prepend `NUMBER:' to page number. Use Roman Numeral. | |
35 Apply only to unsorted index file, | |
36 Then insert marked file into other volume's unsorted index file. | |
37 Then run texindex on that file and save." | |
38 (interactive | |
39 "sType volume number, roman number I or II: " ) | |
40 (goto-char (point-min)) | |
41 (while (search-forward "\\entry" nil t) | |
42 (search-forward "}{" (save-excursion (end-of-line) (point)) nil) | |
43 (insert arg ":"))) | |
44 | |
45 (defun volume-numbers-toc-markup (arg) | |
46 (interactive | |
47 "sType volume number, roman number I or II: " ) | |
48 (goto-char (point-min)) | |
49 (while (search-forward "chapentry" nil t) | |
50 (end-of-line) | |
51 (search-backward "{" nil t) | |
52 (forward-char 1) | |
53 (insert arg ":"))) | |
54 | |
55 (defun volume-header-toc-markup () | |
56 "Insert Volume I and Volume II text into .toc file. | |
57 NOTE: this auxilary function is file specific. | |
58 This is for the *Elisp Ref Manual*" | |
59 (interactive) | |
60 (goto-char (point-min)) | |
61 (insert "\\unnumbchapentry {Volume 1}{}\n\\unnumbchapentry {}{}\n") | |
62 (search-forward "\\unnumbchapentry {Index}") | |
63 (forward-line 1) | |
64 (insert | |
65 "\\unnumbchapentry {}{}\n\\unnumbchapentry {}{}\n\\unnumbchapentry {}{}\n\\unnumbchapentry {}{}\n\\unnumbchapentry {Volume 2}{}\n\\unnumbchapentry {}{}\n")) | |
66 | |
67 | |
68 ;;; In batch mode, you cannot call functions with args; hence this kludge: | |
69 | |
70 (defun volume-aux-markup-1 () (volume-aux-markup "1")) | |
71 (defun volume-aux-markup-2 () (volume-aux-markup "2")) | |
72 | |
73 (defun volume-index-markup-I () (volume-index-markup "I")) | |
74 (defun volume-index-markup-II () (volume-index-markup "II")) | |
75 | |
76 (defun volume-numbers-toc-markup-I () (volume-numbers-toc-markup "I")) | |
77 (defun volume-numbers-toc-markup-II () (volume-numbers-toc-markup "II")) | |
78 | |
95035
fde6f792a832
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
79 ;; arch-tag: 848955fe-e9cf-45e7-a2f1-570ef156d6a5 |
fde6f792a832
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
80 ;;; two.el ends here |