comparison lisp/textmodes/two-column.el @ 110494:7c4da622f181

Remove leading `*' from docs of some defcustoms etc. * emulation/crisp.el, emulation/cua-base.el, emulation/edt.el: * emulation/pc-select.el, emulation/vip.el, international/iso-ascii.el: * international/kkc.el, international/ogonek.el, mail/feedmail.el: * net/browse-url.el, net/eudc-vars.el, net/net-utils.el: * net/rcompile.el, net/rlogin.el, textmodes/enriched.el: * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/picture.el: * textmodes/refer.el, textmodes/spell.el, textmodes/table.el: * textmodes/tex-mode.el, textmodes/two-column.el: Remove leading `*' from docs of defcustoms etc.
author Glenn Morris <rgm@gnu.org>
date Wed, 22 Sep 2010 23:42:45 -0700
parents 1d1d5d9bd884
children 417b1e4d63cd
comparison
equal deleted inserted replaced
110493:4dea687a331f 110494:7c4da622f181
207 207
208 ;; rearranged, so that the pertinent info will show in 40 columns 208 ;; rearranged, so that the pertinent info will show in 40 columns
209 (defcustom 2C-mode-line-format 209 (defcustom 2C-mode-line-format
210 '("-%*- %15b --" (-3 . "%p") "--%[(" mode-name 210 '("-%*- %15b --" (-3 . "%p") "--%[(" mode-name
211 minor-mode-alist "%n" mode-line-process ")%]%-") 211 minor-mode-alist "%n" mode-line-process ")%]%-")
212 "*Value of `mode-line-format' for a buffer in two-column minor mode." 212 "Value of `mode-line-format' for a buffer in two-column minor mode."
213 :type 'sexp 213 :type 'sexp
214 :group 'two-column) 214 :group 'two-column)
215 215
216 216
217 (defcustom 2C-other-buffer-hook 'text-mode 217 (defcustom 2C-other-buffer-hook 'text-mode
218 "*Hook run in new buffer when it is associated with current one." 218 "Hook run in new buffer when it is associated with current one."
219 :type 'function 219 :type 'function
220 :group 'two-column) 220 :group 'two-column)
221 221
222 222
223 (defcustom 2C-separator "" 223 (defcustom 2C-separator ""
224 "*A string inserted between the two columns when merging. 224 "A string inserted between the two columns when merging.
225 This gets set locally by \\[2C-split]." 225 This gets set locally by \\[2C-split]."
226 :type 'string 226 :type 'string
227 :group 'two-column) 227 :group 'two-column)
228 (put '2C-separator 'permanent-local t) 228 (put '2C-separator 'permanent-local t)
229 229
230 230
231 231
232 (defcustom 2C-window-width 40 232 (defcustom 2C-window-width 40
233 "*The width of the first column. (Must be at least `window-min-width') 233 "The width of the first column. (Must be at least `window-min-width')
234 This value is local for every buffer that sets it." 234 This value is local for every buffer that sets it."
235 :type 'integer 235 :type 'integer
236 :group 'two-column) 236 :group 'two-column)
237 (make-variable-buffer-local '2C-window-width) 237 (make-variable-buffer-local '2C-window-width)
238 (put '2C-window-width 'permanent-local t) 238 (put '2C-window-width 'permanent-local t)
239 239
240 240
241 241
242 (defcustom 2C-beyond-fill-column 4 242 (defcustom 2C-beyond-fill-column 4
243 "*Base for calculating `fill-column' for a buffer in two-column minor mode. 243 "Base for calculating `fill-column' for a buffer in two-column minor mode.
244 The value of `fill-column' becomes `2C-window-width' for this buffer 244 The value of `fill-column' becomes `2C-window-width' for this buffer
245 minus this value." 245 minus this value."
246 :type 'integer 246 :type 'integer
247 :group 'two-column) 247 :group 'two-column)
248 248