branch: elpa/powershell
commit 176f9fb0c29ac60898e1e938458f26205511cc23
Author: Juergen Hoetzel <[email protected]>
Commit: Juergen Hoetzel <[email protected]>
Rename powershell-indent to powershell-indent-level
Rename the `powershell-indent` custom variable to `powershell-indent-level`
for better clarity and consistency with Emacs naming conventions.
Add a compatibility alias for the old variable name to avoid breaking
existing configurations, marked obsolete as of version 0.4.
Fixes #46
---
powershell.el | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/powershell.el b/powershell.el
index 246ad6b0b73..bb7effdec6f 100644
--- a/powershell.el
+++ b/powershell.el
@@ -6,7 +6,7 @@
;; Author: Frédéric Perrin <frederic (dot) perrin (arobas) resel (dot) fr>
;; URL: http://github.com/jschaf/powershell.el
-;; Version: 0.3
+;; Version: 0.4
;; Package-Requires: ((emacs "24"))
;; Keywords: powershell, languages
@@ -90,12 +90,14 @@
:link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
:group 'languages)
-(defcustom powershell-indent 4
+(defcustom powershell-indent-level 4
"Amount of horizontal space to indent.
After, for instance, an opening brace"
:type 'integer
:group 'powershell)
+(define-obsolete-variable-alias 'powershell-indent 'powershell-indent-level
"0.4")
+
(defcustom powershell-continuation-indent 2
"Amount of horizontal space to indent a continuation line."
:type 'integer
@@ -173,7 +175,7 @@ with a backtick or a pipe"
;; bol or another block open on the same line.
(if closing-paren ; this sets the default indent
(setq new-indent (current-indentation))
- (setq new-indent (+ powershell-indent
(current-indentation))))
+ (setq new-indent (+ powershell-indent-level
(current-indentation))))
;; now see if the block is nested on the same line
(when (condition-case nil
(progn
@@ -184,7 +186,7 @@ with a backtick or a pipe"
(skip-syntax-forward " ")
(if closing-paren
(setq new-indent (current-column))
- (setq new-indent (+ powershell-indent (current-column))))))
+ (setq new-indent (+ powershell-indent-level
(current-column))))))
new-indent)
(scan-error ;; most likely, we are at the top-level
0))))))