X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/b6bd159922608fa474026837771d63bf7eadcf97..c69aef14ddc150da07dcd3527b5a9fb99d6cef34:/lisp/progmodes/icon.el diff --git a/lisp/progmodes/icon.el b/lisp/progmodes/icon.el index 5382ce1386..7fde29dcf7 100644 --- a/lisp/progmodes/icon.el +++ b/lisp/progmodes/icon.el @@ -1,6 +1,6 @@ ;;; icon.el --- mode for editing Icon code -;; Copyright (C) 1989, 2001-2011 Free Software Foundation, Inc. +;; Copyright (C) 1989, 2001-2016 Free Software Foundation, Inc. ;; Author: Chris Smith ;; Created: 15 Feb 89 @@ -85,39 +85,39 @@ :group 'languages) (defcustom icon-indent-level 4 - "*Indentation of Icon statements with respect to containing block." + "Indentation of Icon statements with respect to containing block." :type 'integer :group 'icon) (defcustom icon-brace-imaginary-offset 0 - "*Imagined indentation of a Icon open brace that actually follows a statement." + "Imagined indentation of a Icon open brace that actually follows a statement." :type 'integer :group 'icon) (defcustom icon-brace-offset 0 - "*Extra indentation for braces, compared with other text in same context." + "Extra indentation for braces, compared with other text in same context." :type 'integer :group 'icon) (defcustom icon-continued-statement-offset 4 - "*Extra indent for Icon lines not starting new statements." + "Extra indent for Icon lines not starting new statements." :type 'integer :group 'icon) (defcustom icon-continued-brace-offset 0 - "*Extra indent for Icon substatements that start with open-braces. + "Extra indent for Icon substatements that start with open-braces. This is in addition to `icon-continued-statement-offset'." :type 'integer :group 'icon) (defcustom icon-auto-newline nil - "*Non-nil means automatically newline before and after braces Icon code. + "Non-nil means automatically newline before and after braces Icon code. This applies when braces are inserted." :type 'boolean :group 'icon) (defcustom icon-tab-always-indent t - "*Non-nil means TAB in Icon mode should always reindent the current line. + "Non-nil means TAB in Icon mode should always reindent the current line. It will then reindent, regardless of where in the line point is when the TAB command is used." :type 'boolean