diff options
| author | Juanma Barranquero | 2005-05-19 19:06:19 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-05-19 19:06:19 +0000 |
| commit | f53077821077bbb41e1d8ee4741f8572bd9950d8 (patch) | |
| tree | 52c273d666f33fd8c205b7a6b7c28eacb296f156 /lisp/textmodes | |
| parent | 93c8c9cd7d48e5142808c444ba4d637f1ef45d77 (diff) | |
| download | emacs-f53077821077bbb41e1d8ee4741f8572bd9950d8.tar.gz emacs-f53077821077bbb41e1d8ee4741f8572bd9950d8.zip | |
Specify missing group (and type, if simple) in defcustom.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/fill.el | 3 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-vars.el | 4 | ||||
| -rw-r--r-- | lisp/textmodes/table.el | 3 |
3 files changed, 7 insertions, 3 deletions
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index c41145befc8..1615da60910 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el | |||
| @@ -61,7 +61,8 @@ If the function returns nil, then `fill-paragraph' does its normal work.") | |||
| 61 | Kinsoku processing is designed to prevent certain characters from being | 61 | Kinsoku processing is designed to prevent certain characters from being |
| 62 | placed at the beginning or end of a line by filling. | 62 | placed at the beginning or end of a line by filling. |
| 63 | See the documentation of `kinsoku' for more information." | 63 | See the documentation of `kinsoku' for more information." |
| 64 | :type 'boolean) | 64 | :type 'boolean |
| 65 | :group 'fill) | ||
| 65 | 66 | ||
| 66 | (defun set-fill-prefix () | 67 | (defun set-fill-prefix () |
| 67 | "Set the fill prefix to the current line up to point. | 68 | "Set the fill prefix to the current line up to point. |
diff --git a/lisp/textmodes/reftex-vars.el b/lisp/textmodes/reftex-vars.el index 64419678b23..b9748b31df2 100644 --- a/lisp/textmodes/reftex-vars.el +++ b/lisp/textmodes/reftex-vars.el | |||
| @@ -1388,7 +1388,9 @@ Inserting indexing commands in a line makes the line longer - often | |||
| 1388 | so long that it does not fit onto the screen. When this variable is | 1388 | so long that it does not fit onto the screen. When this variable is |
| 1389 | non-nil, newlines will be added as necessary before and/or after the | 1389 | non-nil, newlines will be added as necessary before and/or after the |
| 1390 | indexing command to keep lines short. However, the matched text | 1390 | indexing command to keep lines short. However, the matched text |
| 1391 | phrase and its index command will always end up on a single line.") | 1391 | phrase and its index command will always end up on a single line." |
| 1392 | :group 'reftex-index-support | ||
| 1393 | :type 'boolean) | ||
| 1392 | 1394 | ||
| 1393 | (defcustom reftex-index-phrases-sort-prefers-entry nil | 1395 | (defcustom reftex-index-phrases-sort-prefers-entry nil |
| 1394 | "*Non-nil means when sorting phrase lines, the explicit index entry is used. | 1396 | "*Non-nil means when sorting phrase lines, the explicit index entry is used. |
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el index a85e968d3ee..118ca3bb3fa 100644 --- a/lisp/textmodes/table.el +++ b/lisp/textmodes/table.el | |||
| @@ -842,7 +842,8 @@ simply by any key input." | |||
| 842 | :group 'table-hooks) | 842 | :group 'table-hooks) |
| 843 | 843 | ||
| 844 | (defcustom table-yank-handler '(nil nil t nil) | 844 | (defcustom table-yank-handler '(nil nil t nil) |
| 845 | "*yank-handler for table.") | 845 | "*yank-handler for table." |
| 846 | :group 'table) | ||
| 846 | 847 | ||
| 847 | (setplist 'table-disable-incompatibility-warning nil) | 848 | (setplist 'table-disable-incompatibility-warning nil) |
| 848 | 849 | ||