branch: externals/wisi
commit bd1884ca8c0352c9ec0cda34c618cdcfafe9bcf5
Author: Stefan Monnier <[email protected]>
Commit: Stefan Monnier <[email protected]>
Fix up copyright notices.
---
wisi-parse.el | 26 ++++++++++++++++++++++++--
1 file changed, 24 insertions(+), 2 deletions(-)
diff --git a/wisi-parse.el b/wisi-parse.el
index 5c1af98..e2b3d86 100755
--- a/wisi-parse.el
+++ b/wisi-parse.el
@@ -1,9 +1,31 @@
-;; Wisi parser
-;;
+;;; wisi-parse.el --- Wisi parser
+
+;; Copyright (C) 2013 Free Software Foundation, Inc.
+
+;; This file is part of GNU Emacs.
+
+;; GNU Emacs is free software: you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; GNU Emacs is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
+
+
+;;; Commentary:
+
;; An extended LALR parser, that handles shift/reduce and
;; reduce/reduce conflicts by spawning parallel parsers to follow each
;; path.
+;;; Code:
+
(require 'semantic/wisent)
(eval-when-compile (require 'cl-macs))