Function: sh-reset-indent-vars-to-global-values

sh-reset-indent-vars-to-global-values is an interactive and byte-compiled function defined in sh-script.el.gz.

Signature

(sh-reset-indent-vars-to-global-values)

Documentation

Reset local indentation variables to the global values.

Then, if variable sh-make-vars-local(var)/sh-make-vars-local(fun) is non-nil, make them local.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/sh-script.el.gz
(defun sh-reset-indent-vars-to-global-values ()
  "Reset local indentation variables to the global values.
Then, if variable `sh-make-vars-local' is non-nil, make them local."
  (interactive)
  (mapc 'kill-local-variable sh-var-list)
  (if sh-make-vars-local
      (mapcar 'make-local-variable sh-var-list)))