commit/ispell: 5 new changesets

[email protected]
Newsgroups gmane.emacs.xemacs.patches
Message-ID <[email protected]>
5 new commits in ispell:

https://bitbucket.org/xemacs/ispell/commits/83a2b2ab5fa0/
Changeset:   83a2b2ab5fa0
User:        Norbert Koch
Date:        2014-06-29 20:58:32
Summary:     XEmacs Package Release 1.35
Affected #:  2 files

diff -r 083f2beaed8996529125b6b18cc494cb8c905247 -r 83a2b2ab5fa04d13b2871ea3913ae217c75d6e00 ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-06-29  Norbert Koch  <[email protected]>
+
+	* Makefile (VERSION): XEmacs package 1.35 released.
+
 2014-05-15  Norbert Koch  <[email protected]>
 
 	* Makefile (VERSION): XEmacs package 1.34 released.

diff -r 083f2beaed8996529125b6b18cc494cb8c905247 -r 83a2b2ab5fa04d13b2871ea3913ae217c75d6e00 Makefile
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@
 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 # Boston, MA 02111-1307, USA.
 
-VERSION = 1.34
+VERSION = 1.35
 AUTHOR_VERSION = 3.6
 MAINTAINER = XEmacs Development Team <[email protected]>
 PACKAGE = ispell


https://bitbucket.org/xemacs/ispell/commits/173d1d09f190/
Changeset:   173d1d09f190
User:        Norbert Koch
Date:        2014-06-29 20:58:32
Summary:     Added tag ispell-1_35 for changeset 83a2b2ab5fa0
Affected #:  1 file

diff -r 83a2b2ab5fa04d13b2871ea3913ae217c75d6e00 -r 173d1d09f1903bbd94fa86b44da71d4b2d1aac07 .hgtags
--- a/.hgtags
+++ b/.hgtags
@@ -69,3 +69,4 @@
 8a988f5b0f8c3e9936262ca3f652bd3e2b6f96d4 sumo-2006-05-10
 9ca440010a694e49400e848539ce7df2e87a38f0 ispell-1_33
 762d226dee687652245b65fa3738f96ad4805152 ispell-1_34
+83a2b2ab5fa04d13b2871ea3913ae217c75d6e00 ispell-1_35


https://bitbucket.org/xemacs/ispell/commits/ab0ac152cfc5/
Changeset:   ab0ac152cfc5
User:        Norbert Koch
Date:        2014-06-29 21:46:27
Summary:     Merge outstanding stuff into my workspace
Affected #:  2 files

diff -r 173d1d09f1903bbd94fa86b44da71d4b2d1aac07 -r ab0ac152cfc55ab78263c36822fc8d693d59c8e2 ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,7 +2,13 @@
 
 	* Makefile (VERSION): XEmacs package 1.35 released.
 
-2014-05-15  Norbert Koch  <[email protected]>
+2014-06-11  Jerry James  <[email protected]>
+
+	* ispell.el (ispell-start-process): fix encoding with aspell, and
+	assume that any aspell program is at least the decade-old aspell
+	0.60.
+
+2013-05-15  Norbert Koch  <[email protected]>
 
 	* Makefile (VERSION): XEmacs package 1.34 released.
 

diff -r 173d1d09f1903bbd94fa86b44da71d4b2d1aac07 -r ab0ac152cfc55ab78263c36822fc8d693d59c8e2 ispell.el
--- a/ispell.el
+++ b/ispell.el
@@ -2249,6 +2249,11 @@
 			    (expand-file-name ispell-personal-dictionary)))))
     (setq args (append args ispell-extra-args))
 
+    ;; If running aspell, fix the encoding; aspell >= 0.60 required
+    (when (string-match "^aspell" (file-name-nondirectory ispell-program-name))
+      (add-to-list
+       'args (concat "--encoding=" (symbol-name (ispell-get-coding-system)))))
+
     (if ispell-async-processp
 	(let ((process-connection-type ispell-use-ptys-p))
 	  (apply 'start-process


https://bitbucket.org/xemacs/ispell/commits/84db20d8509c/
Changeset:   84db20d8509c
User:        Norbert Koch
Date:        2014-06-29 21:46:43
Summary:     XEmacs Package Release 1.36
Affected #:  2 files

diff -r ab0ac152cfc55ab78263c36822fc8d693d59c8e2 -r 84db20d8509c51a56d6b58a84760c314a52efc9f ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-06-29  Norbert Koch  <[email protected]>
+
+	* Makefile (VERSION): XEmacs package 1.36 released.
+
 2014-06-29  Norbert Koch  <[email protected]>
 
 	* Makefile (VERSION): XEmacs package 1.35 released.

diff -r ab0ac152cfc55ab78263c36822fc8d693d59c8e2 -r 84db20d8509c51a56d6b58a84760c314a52efc9f Makefile
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@
 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 # Boston, MA 02111-1307, USA.
 
-VERSION = 1.35
+VERSION = 1.36
 AUTHOR_VERSION = 3.6
 MAINTAINER = XEmacs Development Team <[email protected]>
 PACKAGE = ispell


https://bitbucket.org/xemacs/ispell/commits/b2c5555f206f/
Changeset:   b2c5555f206f
User:        Norbert Koch
Date:        2014-06-29 21:46:43
Summary:     Added tag ispell-1_36 for changeset 84db20d8509c
Affected #:  1 file

diff -r 84db20d8509c51a56d6b58a84760c314a52efc9f -r b2c5555f206fdc26b871a6ff32a88a8f632e9fd2 .hgtags
--- a/.hgtags
+++ b/.hgtags
@@ -70,3 +70,4 @@
 9ca440010a694e49400e848539ce7df2e87a38f0 ispell-1_33
 762d226dee687652245b65fa3738f96ad4805152 ispell-1_34
 83a2b2ab5fa04d13b2871ea3913ae217c75d6e00 ispell-1_35
+84db20d8509c51a56d6b58a84760c314a52efc9f ispell-1_36

Repository URL: https://bitbucket.org/xemacs/ispell/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.