Variable: fortran-tab-mode-string

fortran-tab-mode-string is a customizable variable defined in fortran.el.gz.

Value

#("/t" 0 2
  (help-echo "This buffer is in Fortran TAB mode" mouse-face
	     mode-line-highlight local-map
	     (keymap
	      (mode-line keymap
			 (mouse-1
			  . #[0 "\300\301!\207"
				[describe-variable
				 fortran-tab-mode-string]
				2 nil nil])))))

Documentation

String to appear in mode line in TAB format buffers.

See Info node (emacs)ForIndent Cont.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/fortran.el.gz
;; TODO add more detail of what tab mode is to doc string.
(defcustom fortran-tab-mode-string
  (propertize "/t" 'help-echo "This buffer is in Fortran TAB mode"
              'mouse-face 'mode-line-highlight
              'local-map
              (make-mode-line-mouse-map 'mouse-1
                                        (lambda ()
                                          (interactive)
                                          (describe-variable
                                           'fortran-tab-mode-string))))
  "String to appear in mode line in TAB format buffers.
See Info node `(emacs)ForIndent Cont'."
  :type  'string
  :risky t
  :group 'fortran-indent)