annotate man/lispref/locals.texi @ 800:a5954632b187

[xemacs-hg @ 2002-03-31 08:27:14 by ben] more fixes, first crack at finishing behavior implementation TODO.ben-mule-21-5: Update. configure.in: Fix for new error-checking types. make-mswin-unicode.pl: Don't be fucked up by CRLF. Output code to force errors when nonintercepted Windows calls issued. behavior.el, dumped-lisp.el, menubar-items.el: Add support for saving using custom. Load into a dumped XEmacs. Correct :title to :short-doc in accordance with behavior-defs.el. Add a submenu under Options for turning on/off behaviors. cl-macs.el: Properly document `loop'. Fix a minor bug in keymap iteration and add support for bit-vector iteration. lisp-mode.el: Rearrange and add items for macro expanding. menubar-items.el: Document connection between these two functions. window.el: Port stuff from GNU 21.1. config.inc.samp, xemacs.mak: Separate out and add new variable for controlling error-checking. s/windowsnt.h: Use new ERROR_CHECK_ALL; not related to DEBUG_XEMACS. alloc.c, backtrace.h, buffer.c, buffer.h, bytecode.c, callproc.c, casetab.c, charset.h, chartab.c, cmdloop.c, config.h.in, console-msw.c, console-stream.c, console-tty.c, console.c, console.h, data.c, device-msw.c, device.c, device.h, dired-msw.c, dired.c, dumper.c, editfns.c, eldap.c, elhash.c, emacs.c, eval.c, event-Xt.c, event-gtk.c, event-msw.c, event-stream.c, events.c, extents.c, faces.c, file-coding.c, file-coding.h, fileio.c, frame-msw.c, frame.c, frame.h, glyphs-gtk.c, glyphs-msw.c, glyphs-shared.c, glyphs-widget.c, glyphs-x.c, glyphs.c, glyphs.h, insdel.c, intl-auto-encap-win32.c, intl-auto-encap-win32.h, intl-encap-win32.c, intl-win32.c, keymap.c, lisp-union.h, lisp.h, lread.c, lrecord.h, lstream.c, lstream.h, macros.c, marker.c, md5.c, menubar-x.c, menubar.c, mule-coding.c, ntproc.c, objects-gtk.c, objects-msw.c, objects-x.c, objects.c, opaque.c, print.c, process-nt.c, process-unix.c, process.c, rangetab.c, redisplay-msw.c, redisplay-output.c, redisplay.c, regex.c, scrollbar-msw.c, select-msw.c, signal.c, specifier.c, specifier.h, symbols.c, sysdep.c, syswindows.h, text.c, text.h, toolbar-msw.c, tooltalk.c, ui-gtk.c, unicode.c, window.c: Redo error-checking macros: ERROR_CHECK_TYPECHECK -> ERROR_CHECK_TYPES, ERROR_CHECK_CHARBPOS -> ERROR_CHECK_TEXT, add ERROR_CHECK_DISPLAY, ERROR_CHECK_STRUCTURES. Document these in config.h.in. Fix code to follow docs. Fix *_checking_assert() in accordance with new names. Attempt to fix periodic redisplay crash freeing display line structures. Add first implementation of sledgehammer redisplay check. Redo print_*() to use write_fmt_string(), write_fmt_string_lisp(). Fix bug in md5 handling. Rename character-to-unicode to char-to-unicode; same for unicode-to-char{acter}. Move chartab documentation to `make-char-table'. Some header cleanup. Clean up remaining places where nonintercepted Windows calls are being used. automated/mule-tests.el: Fix for new Unicode support.
author ben
date Sun, 31 Mar 2002 08:30:17 +0000
parents 1ccc32a20af4
children 0b4d355771bd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 @c -*-texinfo-*-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 @c This is part of the XEmacs Lisp Reference Manual.
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 0
diff changeset
3 @c Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 @c See the file lispref.texi for copying conditions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 @setfilename ../../info/locals.info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 @node Standard Buffer-Local Variables, Standard Keymaps, Standard Errors, Top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 @appendix Buffer-Local Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 @c The title "Standard Buffer-Local Variables" is too long for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 @c smallbook. --rjc 30mar92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 The table below lists the general-purpose Emacs variables that are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 automatically local (when set) in each buffer. Many Lisp packages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 define such variables for their internal use; we don't list them here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 @table @code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 @item abbrev-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 @pxref{Abbrevs}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 @item auto-fill-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 @pxref{Auto Filling}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 @item buffer-auto-save-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 @pxref{Auto-Saving}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 @item buffer-backed-up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 @pxref{Backup Files}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 @item buffer-display-table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 @pxref{Display Tables}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 @item buffer-file-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 @pxref{Format Conversion}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 @item buffer-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 @pxref{Buffer File Name}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 @item buffer-file-number
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 @pxref{Buffer File Name}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 @item buffer-file-truename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 @pxref{Buffer File Name}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 @item buffer-file-type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 @pxref{Files and MS-DOS}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 @item buffer-invisibility-spec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 @pxref{Invisible Text}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 @item buffer-offer-save
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 @pxref{Saving Buffers}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 @item buffer-read-only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 @pxref{Read Only Buffers}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 @item buffer-saved-size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 @pxref{Point}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 @item buffer-undo-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 @pxref{Undo}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 @item cache-long-line-scans
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 @pxref{Text Lines}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 @item case-fold-search
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 @pxref{Searching and Case}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 @item ctl-arrow
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 @pxref{Usual Display}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 @item comment-column
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
71 @pxref{Comments,,, xemacs, The XEmacs User's Manual}
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 @item default-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 @pxref{System Environment}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 @item defun-prompt-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 @pxref{List Motion}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 @item fill-column
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 @pxref{Auto Filling}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 @item goal-column
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
83 @pxref{Moving Point,,, xemacs, The XEmacs User's Manual}
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 @item left-margin
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 @pxref{Indentation}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 @item local-abbrev-table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 @pxref{Abbrevs}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 @item local-write-file-hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 @pxref{Saving Buffers}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 @item major-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 @pxref{Mode Help}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 @item mark-active
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 @pxref{The Mark}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 @item mark-ring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 @pxref{The Mark}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 @item minor-modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 @pxref{Minor Modes}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 @item modeline-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 @pxref{Modeline Data}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 @item modeline-buffer-identification
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 @pxref{Modeline Variables}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 @item modeline-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 @pxref{Modeline Data}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 @item modeline-modified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 @pxref{Modeline Variables}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 @item modeline-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 @pxref{Modeline Variables}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 @item mode-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 @pxref{Modeline Variables}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 @item overwrite-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 @pxref{Insertion}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 @item paragraph-separate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 @pxref{Standard Regexps}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 @item paragraph-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 @pxref{Standard Regexps}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 @item point-before-scroll
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 Used for communication between mouse commands and scroll-bar commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 @item require-final-newline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 @pxref{Insertion}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 @item selective-display
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 @pxref{Selective Display}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 @item selective-display-ellipses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 @pxref{Selective Display}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 @item tab-width
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 @pxref{Usual Display}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 @item truncate-lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 @pxref{Truncation}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 @item vc-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 @pxref{Modeline Variables}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 @end table