emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/wisi 0e04e18 08/35: ada-mode, wisi: bump versions again


From: Stefan Monnier
Subject: [elpa] externals/wisi 0e04e18 08/35: ada-mode, wisi: bump versions again; forgot to add some files to git
Date: Sat, 28 Nov 2020 14:47:51 -0500 (EST)

branch: externals/wisi
commit 0e04e184ee7251e74360fe881f516ab35eab2dfa
Author: Stephen Leake <stephen_leake@stephe-leake.org>
Commit: Stephen Leake <stephen_leake@stephe-leake.org>

    ada-mode, wisi: bump versions again; forgot to add some files to git
    
    * packages/ada-mode/README:
    * packages/ada-mode/ada-mode.el: version 5.1.2
    
    * packages/wisi/wisi.el: version 1.0.3
    
    * packages/ada-mode/NEWS: New file.
    
    * packages/ada-mode/ada-mode-compat-24.2.el: New file.
    
    * packages/ada-mode/dir: New file.
    
    * packages/wisi/NEWS: New file.
    
    * packages/wisi/wisi-compat-24.2.el: New file.
---
 NEWS                | 27 +++++++++++++++++++++++++++
 wisi-compat-24.2.el | 35 +++++++++++++++++++++++++++++++++++
 wisi.el             |  2 +-
 3 files changed, 63 insertions(+), 1 deletion(-)

diff --git a/NEWS b/NEWS
new file mode 100755
index 0000000..332caea
--- /dev/null
+++ b/NEWS
@@ -0,0 +1,27 @@
+GNU Emacs wisi NEWS -- history of user-visible changes.
+
+Copyright (C) 2014 Free Software Foundation, Inc.
+See the end of the file for license conditions.
+
+Please send wisi bug reports to bug-gnu-emacs@gnu.org, with
+'wisi' in the subject. If possible, use M-x report-emacs-bug.
+
+
+* wisi 1.0.3
+16 Mar 2014
+
+** fix another packaging bug; forgot to add files to ELPA git!
+
+* wisi 1.0.2
+14 Mar 2014
+
+** Emacs 24.2 supported, via cl-lib in Gnu ELPA
+
+* wisi 1.0.1
+
+** minor fixes for byte compiler warnings
+
+* wisi 1.0
+Feb 2 2014
+
+** first release in ELPA
diff --git a/wisi-compat-24.2.el b/wisi-compat-24.2.el
new file mode 100755
index 0000000..e4300d7
--- /dev/null
+++ b/wisi-compat-24.2.el
@@ -0,0 +1,35 @@
+;;; wisi-compat-24.2.el --- Implement current Emacs features not present in 
Emacs 24.2
+
+;; Copyright (C) 2014 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/>.
+
+;; using cl-lib 0.4 from Gnu ELPA
+
+(when (not (boundp 'defvar-local))
+  (defmacro defvar-local (var val &optional docstring)
+    "Define VAR as a buffer-local variable with default value VAL.
+Like `defvar' but additionally marks the variable as being automatically
+buffer-local wherever it is set."
+    (declare (debug defvar) (doc-string 3))
+    ;; Can't use backquote here, it's too early in the bootstrap.
+    (list 'progn (list 'defvar var val docstring)
+         (list 'make-variable-buffer-local (list 'quote var))))
+  )
+
+(provide 'wisi-compat-24.2)
+
+;; end of file
diff --git a/wisi.el b/wisi.el
index 62302b7..877fee9 100755
--- a/wisi.el
+++ b/wisi.el
@@ -3,7 +3,7 @@
 ;; Copyright (C) 2012, 2013, 2014  Free Software Foundation, Inc.
 ;;
 ;; Author: Stephen Leake <stephen_leake@member.fsf.org>
-;; Version: 1.0.2
+;; Version: 1.0.3
 ;; package-requires: ((cl-lib "0.4") (emacs "24.2"))
 ;; URL: http://stephe-leake.org/emacs/ada-mode/emacs-ada-mode.html
 ;;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]