branch: elpa/powershell
commit c05e8d4fe5eba72c8df96b9522b79baf5a6e5309
Author: Sebastian Wiesner <[email protected]>
Commit: Sebastian Wiesner <[email protected]>
Fix file name in header and move lexical-binding to beginning of file
Lexical binding must be at the beginning of a file.
---
powershell.el | 18 +++++++-----------
1 file changed, 7 insertions(+), 11 deletions(-)
diff --git a/powershell.el b/powershell.el
index c2a048f3124..da0ed21f49c 100644
--- a/powershell.el
+++ b/powershell.el
@@ -1,10 +1,10 @@
-;;; powershell-mode.el --- Mode for editing Powershell scripts
+;;; powershell.el --- Mode for editing Powershell scripts -*-
lexical-binding: t; -*-
-;; Copyright (C) 2009, 2010 Fr�d�ric Perrin
+;; Copyright (C) 2009, 2010 Fr�d�ric Perrin
;; Copyright (C) 2012 Richard Bielawski rbielaws-at-i1-dot-net
;; http://www.emacswiki.org/emacs/Rick_Bielawski
-;; Author: Fr�d�ric Perrin <frederic (dot) perrin (arobas) resel (dot) fr>
+;; Author: Fr�d�ric Perrin <frederic (dot) perrin (arobas) resel (dot) fr>
;; URL: http://github.com/jschaf/powershell.el
;; Version: 0.2
;; Keywords: powershell, languages
@@ -36,11 +36,11 @@
;;; Commentary:
;; Powershell.el is a combination of powershell.el by Dino Chiesa
-;; <[email protected]> and powershell-mode.el by Fr�d�ric Perrin
+;; <[email protected]> and powershell-mode.el by Fr�d�ric Perrin
;; and Richard Bielawski. Joe Schafer combined the work into a single
;; file.
-;;; Fr�d�ric Perrin Comments:
+;;; Fr�d�ric Perrin Comments:
;;
;; The original powershell-mode.el was written from scratch, without
;; using Vivek Sharma's code: it had issues I wanted to correct, but
@@ -49,7 +49,7 @@
;;
;;; Rick Bielawski Comments 2012/09/28:
;;
-;; On March 31, 2012 Fr�d�ric gave me permission to take over support
+;; On March 31, 2012 Fr�d�ric gave me permission to take over support
;; for powershell-mode.el. I've added support for multi-line comments
;; and here-strings as well as enhancement/features such as: Functions
;; to quote, unquote and escape a selection, and one to wrap a
@@ -116,7 +116,7 @@ with a backtick or a pipe"
(forward-line -1)
(looking-at powershell-continued-regexp)))
-;; Rick added significant complexity to Fr�d�ric's original version
+;; Rick added significant complexity to Fr�d�ric's original version
(defun powershell-indent-line-amount ()
"Return the column to which the current line ought to be indented."
(interactive)
@@ -1367,10 +1367,6 @@ This insures we get and display the prompt."
;; (insert " "))
;; success)))
-;; Local Variables:
-;; lexical-binding: t
-;; End:
-
(provide 'powershell)
;;; powershell.el ends here