Mercurial > emacs
annotate lispref/two.el @ 50370:0c01548d7ed3
The following changes consolidates the common code related to
frame-parameter handling from the xfns.c, w32fns.c, and macfns.c
files into frame.c.
* xfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
parameters now defined in frame.h and frame.c.
(Vx_resource_name): Remove. Use generic var.
(enum x_frame_parms): Remove (bogus, unused enum).
(check_x_display_info): Make non-static (for frame.c).
(struct x_frame_parm_table, x_frame_parms): Remove.
(init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
(x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
(x_set_border_width, x_set_internal_border_width, x_set_visibility)
(x_change_window_heights, x_set_autoraise, x_set_autolower)
(x_set_vertical_scroll_bars, x_set_scroll_bar_width)
(validate_x_resource_name, Fx_get_resource, x_get_resource_string)
(x_default_parameter, Fx_parse_geometry, x_figure_window_size):
Remove. Use generic functions instead.
(enum resource_types): Remove.
(x_set_scroll_bar_default_width): New global function (for frame.c).
(Fx_create_frame): Depend on x_figure_window_size to add space for
toolbar and setup size_hint_flags.
(x_frame_parm_handlers): New table for redisplay_interface.
(syms_of_xfns): Don't intern/staticpro removed vars.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Mon, 31 Mar 2003 20:36:21 +0000 |
parents | 23a1cea22d13 |
children | 695cf19ef79e |
rev | line source |
---|---|
41193 | 1 ;; Auxilary functions for preparing a two volume manual. |
2 ;; --rjc 30mar92 | |
3 | |
4 (defun volume-aux-markup (arg) | |
5 "Append `vol. NUMBER' to page number. | |
6 Apply to aux file that you save. | |
7 Then insert marked file into other volume's .aux file." | |
8 (interactive "sType volume number, 1 or 2: " ) | |
9 (goto-char (point-min)) | |
10 (while (search-forward "-pg" nil t) | |
11 (end-of-line 1) | |
12 (delete-backward-char 1 nil) | |
13 (insert ", vol.'tie" arg "}"))) | |
14 | |
15 (defun volume-index-markup (arg) | |
16 "Prepend `NUMBER:' to page number. Use Roman Numeral. | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41193
diff
changeset
|
17 Apply only to unsorted index file, |
41193 | 18 Then insert marked file into other volume's unsorted index file. |
19 Then run texindex on that file and save." | |
20 (interactive | |
21 "sType volume number, roman number I or II: " ) | |
22 (goto-char (point-min)) | |
23 (while (search-forward "\\entry" nil t) | |
24 (search-forward "}{" (save-excursion (end-of-line) (point)) nil) | |
25 (insert arg ":"))) | |
26 | |
27 (defun volume-numbers-toc-markup (arg) | |
28 (interactive | |
29 "sType volume number, roman number I or II: " ) | |
30 (goto-char (point-min)) | |
31 (while (search-forward "chapentry" nil t) | |
32 (end-of-line) | |
33 (search-backward "{" nil t) | |
34 (forward-char 1) | |
35 (insert arg ":"))) | |
36 | |
37 (defun volume-header-toc-markup () | |
38 "Insert Volume I and Volume II text into .toc file. | |
39 NOTE: this auxilary function is file specific. | |
40 This is for the *Elisp Ref Manual*" | |
41 (interactive) | |
42 (goto-char (point-min)) | |
43 (insert "\\unnumbchapentry {Volume 1}{}\n\\unnumbchapentry {}{}\n") | |
44 (search-forward "\\unnumbchapentry {Index}") | |
45 (forward-line 1) | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41193
diff
changeset
|
46 (insert |
41193 | 47 "\\unnumbchapentry {}{}\n\\unnumbchapentry {}{}\n\\unnumbchapentry {}{}\n\\unnumbchapentry {}{}\n\\unnumbchapentry {Volume 2}{}\n\\unnumbchapentry {}{}\n")) |
48 | |
49 | |
50 ;;; In batch mode, you cannot call functions with args; hence this kludge: | |
51 | |
52 (defun volume-aux-markup-1 () (volume-aux-markup "1")) | |
53 (defun volume-aux-markup-2 () (volume-aux-markup "2")) | |
54 | |
55 (defun volume-index-markup-I () (volume-index-markup "I")) | |
56 (defun volume-index-markup-II () (volume-index-markup "II")) | |
57 | |
58 (defun volume-numbers-toc-markup-I () (volume-numbers-toc-markup "I")) | |
59 (defun volume-numbers-toc-markup-II () (volume-numbers-toc-markup "II")) |