aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/pascal.el
diff options
context:
space:
mode:
authorChong Yidong2012-04-09 21:05:48 +0800
committerChong Yidong2012-04-09 21:05:48 +0800
commitfb7ada5f94a71d73bf6cfad5cc87fe7fb26125a5 (patch)
treeeba43d1fa2427a77f1f6b1468838426b33ea5973 /lisp/progmodes/pascal.el
parenta18ecafa99e7e7c3caa35ed68dd8a7b9b5d2b8e3 (diff)
downloademacs-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.el22
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.
197These include after semicolons and after the punctuation mark after an `end'." 197These 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.
208If this is nil, TAB inserts a tab if it is at the end of the line 208If this is nil, TAB inserts a tab if it is at the end of the line
209and follows non-whitespace text." 209and 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.
215Specifically, this is done after the ends of cases statements and functions. 215Specifically, this is done after the ends of cases statements and functions.
216The name of the function or case is included between the braces." 216The 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.
222Elements can be of type: 'paramlist', 'declaration' or 'case', which will 222Elements can be of type: 'paramlist', 'declaration' or 'case', which will
223do auto lineup in parameterlist, declarations or case-statements 223do auto lineup in parameterlist, declarations or case-statements
224respectively. The word 'all' will do all lineups. '(case paramlist) for 224respectively. 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.
236Repeated use of \\[pascal-complete-word] would show you all of them. 236Repeated use of \\[pascal-complete-word] would show you all of them.
237Normally, when there is more than one possible completion, 237Normally, when there is more than one possible completion,
238it displays a list of all possible completions.") 238it 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.
245These include integer, real, char, etc. 245These include integer, real, char, etc.
246The types defined within the Pascal program 246The types defined within the Pascal program
247are handled in another way, and should not be added to this list." 247are 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.
255These are keywords such as begin, repeat, until, readln. 255These are keywords such as begin, repeat, until, readln.
256The procedures and variables defined within the Pascal program 256The procedures and variables defined within the Pascal program
257are handled in another way, and should not be added to this list." 257are 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.
264These are keywords such as downto, else, mod, then. 264These are keywords such as downto, else, mod, then.
265Variables and function names defined within the Pascal program 265Variables and function names defined within the Pascal program
266are handled in another way, and should not be added to this list." 266are handled in another way, and should not be added to this list."