annotate man/new-users-guide/custom2.texi @ 267:966663fcf606 r20-5b32

Import from CVS: tag r20-5b32
author cvs
date Mon, 13 Aug 2007 10:26:29 +0200
parents dbb370e3c29e
children c9fe270a4101
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 @comment node-name, next, previous, up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 @node Other Customizations, Select and Move, Files, Top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 @chapter Other Customizations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 @cindex customize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 @cindex hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 @cindex font-lock-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 You can modify the behavior of Emacs in minor ways permanently by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 putting your changes in your @file{.emacs} file. This file contains Lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 function call expressions. Each of these expressions will consist of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 function name followed by arguments, all surrounded by parentheses. For
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 example, to turn on the auto-fill-mode (i.e. break lines automatically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 when they become too long) , put the following line in your
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 @file{.emacs} file:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 (add-hook 'text-mode-hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 '(lambda() (auto-fill-mode 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 Emacs has a function named "turn-on-auto-fill" which is defined as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 "(lambda() (auto-fill-mode 1))". Therefore you can also write the above
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 as:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 (add-hook 'text-mode-hook 'turn-on-auto-fill)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 Emacs provides a number of hooks for the sake of customization. The hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 variables contain list of functions to be called with no arguments. To
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 turn on the auto-fill-mode, add the appropriate hook as shown in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 example above.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 Similarly, to enable the "font-lock mode" which displays your program in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 different fonts and colors(@pxref{Modes}), put the following in your
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 @file{.emacs} file. The comments above the statement explain what the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 statements do.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 ;;; enables the font-lock-mode in Lisp Mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 (add-hook 'lisp-mode-hook 'turn-on-font-lock)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 ;;; enables the font-lock-mode in Texinfo Mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 (add-hook 'texinfo-mode-hook 'turn-on-font-lock)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 ;;; enables the font-lock mode in C Mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 (add-hook 'c-mode-hook 'turn-on-font-lock)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 To turn on the font-lock mode in other Major Modes like emacs-lisp, just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 put the name of the mode with "-hook" appended to it as the middle
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 parameter in the above examples. You can also select the color that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 functions, comments or other keywords should be displayed in :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 ;;; the function names will now be displayed in blue color
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 (set-face-foreground 'font-lock-function-name-face "blue")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 ;;; the comments will be displayed in forest green
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 (set-face-foreground 'font-lock-comment-face "forest green")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 For other customizations regarding the font-lock face, look at the file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 @file{/usr/local/lib/xemacs-19.11/etc/sample.emacs}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 @comment node-name, next, previous, up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 * Setting Variables:: Customizing Emacs variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 * Init File:: Some examples of Lisp expressions in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 .emacs file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 @node Setting Variables, Init File, Other Customizations, Other Customizations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 @section Other Customizations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 @cindex setting variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 @findex describe-variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 In XEmacs, @dfn{variables} are used for internal record-keeping and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 customizations. There are some variables called "options" which you can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 use for customizations. To examine a variable use:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 ;;; print the value and documentation of the variable, use either of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 ;;; following commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 C-h v
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 M-x describe variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 After you type any of the above commands, you will be prompted for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 variable name in the @dfn{echo area}. Type in the name of the variable,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 for example, type @var{case-fold-search} @key{RET}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 Your window will split into two and you will see the following message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 in that window:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 case-fold-search's value is t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 This value is specific to the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 Documentation:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 *Non-nil if searches should ignore case.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 Automatically becomes buffer-local when set in any fashion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 Since this variable's value is 't' searches will ignore case. If you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 want case-sensitive-search (i.e. if you are searching for "Foo" and you do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 not want "foo" to be included in the search, you need to set this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 variable to "nil". In order to do that, use:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 @findex set-variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 M-x set-variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 Emacs will prompt you for the variable which you wish to set. Type in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 "case-fold-search" and hit @key{RET}. You will see the following
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 message:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 Set case-fold-search to value:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 Type "nil" and hit @key{RET}. Now if you again use @kbd{M-x describe
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 variable} , you will see that the new value of case-fold-search will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 "nil" and your searches will be case-sensitive. This will be effective
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 only for that Emacs session. If you want to change the value of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 variable permanently put the following statement in your @file{.emacs}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 file :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 (setq case-fold-search nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 This statement will make searches case-sensitive only in the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 buffer which is the @file{.emacs} file. This will not be very useful. To
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 make searches case-sensitive globally in all buffers, use:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 (setq-default case-fold-search nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 If you want to change the value of any other variable, use :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (setq <variable-name> <new value>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 "setq" will assign the "new value" to the "variable-name" .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 If you want a list of the "options" i.e. the variables available for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 customization type:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 @findex list-options
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 @findex edit-options
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 ;;; displays a buffer listing names, values and documentation of options
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 M-x list-options
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 ;;; displays options and allows you to edit those list of options
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 M-x edit-options
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 Try these options. If you are using edit-options to edit a variable,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 just point at the variable you wish to edit and use one of the following
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 commands:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 @table @b
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 @item 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 Set the value of the variable to t (non-nil).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 @item 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 Set the value of the variable to nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 @item n
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 Move to the next variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 @item p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 Move to the previous variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 @end table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 There are some other options available to make the value of a variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 local to a buffer and then to switch to its global value. You can also
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 have a @dfn{local variables list} in a file which specifies the values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 to use for certain Emacs variables when you edit that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 file. @xref{Variables,,,,XEmacs User's Manual}, for information on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 these options.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 @comment node-name, next, previous, up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 @node Init File, , Setting Variables, Other Customizations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 @section Init File Examples
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 @cindex init file examples
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 For customizing Emacs, you need to put Lisp expressions in your
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 @file{.emacs} file. The following are some useful Lisp expressions. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 you find any of them useful, just type them in your @file{.emacs} file:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 @itemize @bullet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 The following expression will make @key{TAB} in C mode insert a real tab
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 character if the cursor or point is in the middle of the line. Now
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 hitting the @key{TAB} key will indent a line only if the cursor is at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 the left margin or in the line's indentation:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 (setq c-tab-always-indent nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 The value of the variable @var{c-tab-always-indent} is usually @samp{t}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 for @samp{true}. When this variable is true, then hitting the @key{TAB}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 key always indents the current line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 This expression will turn on the @var{auto-fill-mode} when you are in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 text mode:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 (setq text-mode-hook 'turn-on-auto-fill)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 This mode will automatically break lines when you type a space so that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 the lines don't become too long. The length of the lines is controlled
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 by the variable @var{fill-column}. You can set this variable to a value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 you wish. Look at the documentation for this variable to see its default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 value. To change the value to 75 for example, use:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 @vindex fill-column
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 (setq-default fill-column 75)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 This will change the value of this variable globally.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 @findex eval-expression
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 The following expression will enable the use of @var{eval-expression}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 without confirmation:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 (put 'eval-expression 'disabled nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 Now when you use @var{eval-expression}, it will print the value of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 expression you specify in the @dfn{echo area} without confirming with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 you.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 This expression will remove the binding of @kbd{C-x C-c}, because its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 easy to hit this key by mistake and you will exit Emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 unintentionally. You can use the @b{Exit Emacs} option from the @b{File}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 menu to exit Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 (global-set-key "\C-x\C-c" nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 Now if you type @kbd{C-x C-c}, you won't exit Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 The following expression will make the @key{BACKSPACE} and the @key{DEL}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 key work in the same manner:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 (global-set-key 'backspace [delete])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 This expression will make searches case sensitive:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 (setq-default case-fold-search nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 If we use "setq" instead of "setq-default" then searches will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 case-sensitive only in the current buffer's local value. In this case the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 buffer would be the @file{.emacs} file. Since this would not be too
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 helpful and we want to have case-sensitive searches in all buffers, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 have to use "setq-default".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 This expression will enable the font-lock mode when you are using
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 texinfo mode:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 (add-hook 'texinfo-mode-hook 'turn-on-font-lock)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 @xref{Minor Modes}, for information on font-lock mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 Rebinds the key @kbd{C-x l} to run the function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 @code{make-symbolic-link}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 (global-set-key "\C-xl" 'make-symbolic-link)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 We use the single quote before "make-symbolic-link" because its a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 function name. You can also use the following expression which does the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 same thing:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 (define-key global-map "C-xl" 'make-symbolic-link)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 The following expression will bind @kbd{C-x l} to run the function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 @code{make-symbolic-link} in C mode only:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 (define-key c-mode-map "C-xl" 'make-symbolic-link)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 Instead of binding @kbd{C-xl} to run @code{make-symbolic-link}, you can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 bind the @key{F1} key to run this function:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 (define-key c-mode-map 'f1 'make-symbolic-link)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 Here, you have to use lower case for naming function keys like @key{F1}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 You can bind the function @code{undo} i.e. @kbd{C-x u} to any key, for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 example to @key{F2}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 (global-set-key 'f2 'undo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 The following statement will display the current time in the modeline of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 the buffer:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 @vindex display-time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 @cindex displaying time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 (display-time)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 This displays the current line number on which the cursor is present in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 the modeline:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 (setq line-number-mode t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 If you don't want the text to be highlighted when you use commands for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 marking regions so as to use the @dfn{kill} and @dfn{yank} commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 later, you can use the following expression in your @file{.emacs} file:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 @vindex zmacs-regions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 (setq zmacs-regions nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 Now if you use a command like @kbd{C-x C-p} (@code{mark-page}), the text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 will not be highlighted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 To control the number of buffers listed when you select the @b{Buffers}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 menu, you need to set the variable @var{buffers-menu-max-size} to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 whatever value you wish. For example, if you want 20 buffers to be listed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 when you select @b{Buffers} use:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 @vindex buffers-menu-max-size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 (setq buffers-menu-max-size 20)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 If you want the window title area to display the full directory/name of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 the current buffer's file, and not just the name, use:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 @vindex frame-title-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 (setq frame-title-format "%S: %f")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 To get rid of the menu, use :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 (set-menubar nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 If you want an extensive menu-bar use the following expression in your
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 @file{.emacs} file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 (load "big-menubar")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 If you want to write your own menus, you can look at some of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 examples in
96
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 70
diff changeset
422 @file{/usr/local/lib/xemacs-20.0/lisp/packages/big-menubar.el} file.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 @end itemize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 For more information on initializing your @file{.emacs} file,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 @xref{Init File,,,,XEmacs User's Manual}. You should also look at
96
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 70
diff changeset
428 @file{/usr/local/lib/xemacs-20.0/etc/sample.emacs}, which is a sample
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 @file{.emacs} file. It contains some of the commonly desired
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 customizations in Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441