diff options
| author | Chong Yidong | 2012-04-09 21:05:48 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-04-09 21:05:48 +0800 |
| commit | fb7ada5f94a71d73bf6cfad5cc87fe7fb26125a5 (patch) | |
| tree | eba43d1fa2427a77f1f6b1468838426b33ea5973 /lisp/progmodes/pascal.el | |
| parent | a18ecafa99e7e7c3caa35ed68dd8a7b9b5d2b8e3 (diff) | |
| download | emacs-fb7ada5f94a71d73bf6cfad5cc87fe7fb26125a5.tar.gz emacs-fb7ada5f94a71d73bf6cfad5cc87fe7fb26125a5.zip | |
Remove * characters from the front of variable docstrings.
Diffstat (limited to 'lisp/progmodes/pascal.el')
| -rw-r--r-- | lisp/progmodes/pascal.el | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lisp/progmodes/pascal.el b/lisp/progmodes/pascal.el index 95f1adec40e..8f7f313753c 100644 --- a/lisp/progmodes/pascal.el +++ b/lisp/progmodes/pascal.el | |||
| @@ -183,42 +183,42 @@ | |||
| 183 | (put 'pascal-mode 'font-lock-defaults '(pascal-font-lock-keywords nil t)) | 183 | (put 'pascal-mode 'font-lock-defaults '(pascal-font-lock-keywords nil t)) |
| 184 | 184 | ||
| 185 | (defcustom pascal-indent-level 3 | 185 | (defcustom pascal-indent-level 3 |
| 186 | "*Indentation of Pascal statements with respect to containing block." | 186 | "Indentation of Pascal statements with respect to containing block." |
| 187 | :type 'integer | 187 | :type 'integer |
| 188 | :group 'pascal) | 188 | :group 'pascal) |
| 189 | 189 | ||
| 190 | (defcustom pascal-case-indent 2 | 190 | (defcustom pascal-case-indent 2 |
| 191 | "*Indentation for case statements." | 191 | "Indentation for case statements." |
| 192 | :type 'integer | 192 | :type 'integer |
| 193 | :group 'pascal) | 193 | :group 'pascal) |
| 194 | 194 | ||
| 195 | (defcustom pascal-auto-newline nil | 195 | (defcustom pascal-auto-newline nil |
| 196 | "*Non-nil means automatically insert newlines in certain cases. | 196 | "Non-nil means automatically insert newlines in certain cases. |
| 197 | These include after semicolons and after the punctuation mark after an `end'." | 197 | These include after semicolons and after the punctuation mark after an `end'." |
| 198 | :type 'boolean | 198 | :type 'boolean |
| 199 | :group 'pascal) | 199 | :group 'pascal) |
| 200 | 200 | ||
| 201 | (defcustom pascal-indent-nested-functions t | 201 | (defcustom pascal-indent-nested-functions t |
| 202 | "*Non-nil means nested functions are indented." | 202 | "Non-nil means nested functions are indented." |
| 203 | :type 'boolean | 203 | :type 'boolean |
| 204 | :group 'pascal) | 204 | :group 'pascal) |
| 205 | 205 | ||
| 206 | (defcustom pascal-tab-always-indent t | 206 | (defcustom pascal-tab-always-indent t |
| 207 | "*Non-nil means TAB in Pascal mode should always reindent the current line. | 207 | "Non-nil means TAB in Pascal mode should always reindent the current line. |
| 208 | If this is nil, TAB inserts a tab if it is at the end of the line | 208 | If this is nil, TAB inserts a tab if it is at the end of the line |
| 209 | and follows non-whitespace text." | 209 | and follows non-whitespace text." |
| 210 | :type 'boolean | 210 | :type 'boolean |
| 211 | :group 'pascal) | 211 | :group 'pascal) |
| 212 | 212 | ||
| 213 | (defcustom pascal-auto-endcomments t | 213 | (defcustom pascal-auto-endcomments t |
| 214 | "*Non-nil means automatically insert comments after certain `end's. | 214 | "Non-nil means automatically insert comments after certain `end's. |
| 215 | Specifically, this is done after the ends of cases statements and functions. | 215 | Specifically, this is done after the ends of cases statements and functions. |
| 216 | The name of the function or case is included between the braces." | 216 | The name of the function or case is included between the braces." |
| 217 | :type 'boolean | 217 | :type 'boolean |
| 218 | :group 'pascal) | 218 | :group 'pascal) |
| 219 | 219 | ||
| 220 | (defcustom pascal-auto-lineup '(all) | 220 | (defcustom pascal-auto-lineup '(all) |
| 221 | "*List of contexts where auto lineup of :'s or ='s should be done. | 221 | "List of contexts where auto lineup of :'s or ='s should be done. |
| 222 | Elements can be of type: 'paramlist', 'declaration' or 'case', which will | 222 | Elements can be of type: 'paramlist', 'declaration' or 'case', which will |
| 223 | do auto lineup in parameterlist, declarations or case-statements | 223 | do auto lineup in parameterlist, declarations or case-statements |
| 224 | respectively. The word 'all' will do all lineups. '(case paramlist) for | 224 | respectively. The word 'all' will do all lineups. '(case paramlist) for |
| @@ -232,7 +232,7 @@ will do all lineups." | |||
| 232 | :group 'pascal) | 232 | :group 'pascal) |
| 233 | 233 | ||
| 234 | (defvar pascal-toggle-completions nil | 234 | (defvar pascal-toggle-completions nil |
| 235 | "*Non-nil meant \\<pascal-mode-map>\\[pascal-complete-word] would try all possible completions one by one. | 235 | "Non-nil meant \\<pascal-mode-map>\\[pascal-complete-word] would try all possible completions one by one. |
| 236 | Repeated use of \\[pascal-complete-word] would show you all of them. | 236 | Repeated use of \\[pascal-complete-word] would show you all of them. |
| 237 | Normally, when there is more than one possible completion, | 237 | Normally, when there is more than one possible completion, |
| 238 | it displays a list of all possible completions.") | 238 | it displays a list of all possible completions.") |
| @@ -241,7 +241,7 @@ it displays a list of all possible completions.") | |||
| 241 | 241 | ||
| 242 | (defcustom pascal-type-keywords | 242 | (defcustom pascal-type-keywords |
| 243 | '("array" "file" "packed" "char" "integer" "real" "string" "record") | 243 | '("array" "file" "packed" "char" "integer" "real" "string" "record") |
| 244 | "*Keywords for types used when completing a word in a declaration or parmlist. | 244 | "Keywords for types used when completing a word in a declaration or parmlist. |
| 245 | These include integer, real, char, etc. | 245 | These include integer, real, char, etc. |
| 246 | The types defined within the Pascal program | 246 | The types defined within the Pascal program |
| 247 | are handled in another way, and should not be added to this list." | 247 | are handled in another way, and should not be added to this list." |
| @@ -251,7 +251,7 @@ are handled in another way, and should not be added to this list." | |||
| 251 | (defcustom pascal-start-keywords | 251 | (defcustom pascal-start-keywords |
| 252 | '("begin" "end" "function" "procedure" "repeat" "until" "while" | 252 | '("begin" "end" "function" "procedure" "repeat" "until" "while" |
| 253 | "read" "readln" "reset" "rewrite" "write" "writeln") | 253 | "read" "readln" "reset" "rewrite" "write" "writeln") |
| 254 | "*Keywords to complete when standing at the first word of a statement. | 254 | "Keywords to complete when standing at the first word of a statement. |
| 255 | These are keywords such as begin, repeat, until, readln. | 255 | These are keywords such as begin, repeat, until, readln. |
| 256 | The procedures and variables defined within the Pascal program | 256 | The procedures and variables defined within the Pascal program |
| 257 | are handled in another way, and should not be added to this list." | 257 | are handled in another way, and should not be added to this list." |
| @@ -260,7 +260,7 @@ are handled in another way, and should not be added to this list." | |||
| 260 | 260 | ||
| 261 | (defcustom pascal-separator-keywords | 261 | (defcustom pascal-separator-keywords |
| 262 | '("downto" "else" "mod" "div" "then") | 262 | '("downto" "else" "mod" "div" "then") |
| 263 | "*Keywords to complete when NOT standing at the first word of a statement. | 263 | "Keywords to complete when NOT standing at the first word of a statement. |
| 264 | These are keywords such as downto, else, mod, then. | 264 | These are keywords such as downto, else, mod, then. |
| 265 | Variables and function names defined within the Pascal program | 265 | Variables and function names defined within the Pascal program |
| 266 | are handled in another way, and should not be added to this list." | 266 | are handled in another way, and should not be added to this list." |