comparison lisp/progmodes/idlwave.el @ 42205:7308bbc423d5

Doc fixes.
author Pavel Janík <Pavel@Janik.cz>
date Thu, 20 Dec 2001 18:59:32 +0000
parents 49e8031d8893
children 732e0cda5c89
comparison
equal deleted inserted replaced
42204:73e75f765479 42205:7308bbc423d5
2 ;; Copyright (c) 1999, 2000 Free Software Foundation 2 ;; Copyright (c) 1999, 2000 Free Software Foundation
3 3
4 ;; Author: Chris Chase <chase@att.com> 4 ;; Author: Chris Chase <chase@att.com>
5 ;; Maintainer: John-David Smith <jdsmith@astro.cornell.edu> 5 ;; Maintainer: John-David Smith <jdsmith@astro.cornell.edu>
6 ;; Version: 4.7 6 ;; Version: 4.7
7 ;; Date: $Date: 2001/11/27 15:52:51 $ 7 ;; Date: $Date: 2001/12/01 12:54:29 $
8 ;; Keywords: languages 8 ;; Keywords: languages
9 9
10 ;; This file is part of GNU Emacs. 10 ;; This file is part of GNU Emacs.
11 11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify 12 ;; GNU Emacs is free software; you can redistribute it and/or modify
678 :group 'idlwave-completion 678 :group 'idlwave-completion
679 :type 'boolean) 679 :type 'boolean)
680 680
681 (defcustom idlwave-function-completion-adds-paren t 681 (defcustom idlwave-function-completion-adds-paren t
682 "*Non-nil means, completion automatically adds `(' after completed function. 682 "*Non-nil means, completion automatically adds `(' after completed function.
683 Nil means, don't add anything. 683 nil means, don't add anything.
684 A value of `2' means, also add the closing parenthesis and position cursor 684 A value of `2' means, also add the closing parenthesis and position cursor
685 between the two." 685 between the two."
686 :group 'idlwave-completion 686 :group 'idlwave-completion
687 :type '(choice (const :tag "Nothing" nil) 687 :type '(choice (const :tag "Nothing" nil)
688 (const :tag "(" t) 688 (const :tag "(" t)
911 ; 911 ;
912 ;- 912 ;-
913 ") 913 ")
914 "*A list (PATHNAME STRING) specifying the doc-header template to use for 914 "*A list (PATHNAME STRING) specifying the doc-header template to use for
915 summarizing a file. If PATHNAME is non-nil then this file will be included. 915 summarizing a file. If PATHNAME is non-nil then this file will be included.
916 Otherwise STRING is used. If NIL, the file summary will be omitted. 916 Otherwise STRING is used. If nil, the file summary will be omitted.
917 For example you might set PATHNAME to the path for the 917 For example you might set PATHNAME to the path for the
918 lib_template.pro file included in the IDL distribution.") 918 lib_template.pro file included in the IDL distribution.")
919 919
920 (defcustom idlwave-timestamp-hook 'idlwave-default-insert-timestamp 920 (defcustom idlwave-timestamp-hook 'idlwave-default-insert-timestamp
921 "*The hook function used to update the timestamp of a function." 921 "*The hook function used to update the timestamp of a function."