[S packages] Append lazy-lock-after-change to after-change-functions
10 years, 2 months
Jerry James
SUPERCEDES packages
On Fri, Aug 15, 2014 at 10:50 AM, Jerry James <james(a)xemacs.org> wrote:
> I think that lazy-lock-after-change, which does not alter the region,
> should definitely come at the end of the after-change-functions list, after
> any hook functions which may change the region, not just c-after-change.
> Here is a patch to accomplish that.
>
See the further discussion on xemacs-beta. This new patch changes a few
more font-lock-related manipulations of after-change-functions to ensure
that they always add functions at the end of the list, rather than the
beginning.
diff -r e24f8c81c991 xemacs-packages/edit-utils/ChangeLog
--- a/xemacs-packages/edit-utils/ChangeLog Fri May 30 14:33:15 2014 +0200
+++ b/xemacs-packages/edit-utils/ChangeLog Mon Sep 29 14:16:29 2014 -0600
@@ -1,3 +1,12 @@
+2014-09-23 Jerry James <james(a)xemacs.org>
+
+ * lazy-lock.el (lazy-lock-install-hooks): Append, rather than
+ prepend, lazy-lock-after-change to after-change-functions.
+ (lazy-lock-unstall): Ditto for font-lock-after-change-function.
+ * lazy-shot.el (lazy-shot-install): Ditto for
+ lazy-shot-after-change-function.
+ (lazy-shot-unstall): Ditto for font-lock-after-change-functions.
+
2014-05-26 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 2.55 released.
diff -r e24f8c81c991 xemacs-packages/edit-utils/lazy-lock.el
--- a/xemacs-packages/edit-utils/lazy-lock.el Fri May 30 14:33:15 2014 +0200
+++ b/xemacs-packages/edit-utils/lazy-lock.el Mon Sep 29 14:16:29 2014 -0600
@@ -571,7 +571,7 @@
;; Replace Font Lock mode hook.
(make-local-hook 'after-change-functions)
(remove-hook 'after-change-functions 'font-lock-after-change-function t)
- (add-hook 'after-change-functions 'lazy-lock-after-change nil t)
+ (add-hook 'after-change-functions 'lazy-lock-after-change t t)
;; FSF 21.2: Lots and lots of hooks here. Hooks for `outline', hooks for
;; `hideshow', hooks for redisplay-end-triggers, window-size-changed, and
@@ -616,7 +616,7 @@
(save-restriction
(widen)
(lazy-lock-fontify-region (point-min) (point-max))))))
- (add-hook 'after-change-functions 'font-lock-after-change-function nil
t))
+ (add-hook 'after-change-functions 'font-lock-after-change-function t
t))
;;
;; Remove the text properties.
(lazy-lock-after-unfontify-buffer)
diff -r e24f8c81c991 xemacs-packages/edit-utils/lazy-shot.el
--- a/xemacs-packages/edit-utils/lazy-shot.el Fri May 30 14:33:15 2014 +0200
+++ b/xemacs-packages/edit-utils/lazy-shot.el Mon Sep 29 14:16:29 2014 -0600
@@ -298,7 +298,7 @@
;; entire changed area.
(remove-hook 'after-change-functions 'font-lock-after-change-function t)
(make-local-hook 'after-change-functions)
- (add-hook 'after-change-functions 'lazy-shot-after-change-function nil
t))
+ (add-hook 'after-change-functions 'lazy-shot-after-change-function t t))
;; Kludge needed untill lazy-lock-fontify-region is more intelligent
(defun lazy-shot-unstall-after-fontify ()
@@ -319,8 +319,7 @@
(lazy-shot-fontify-region (point-min) (point-max))))
(remove-hook 'after-change-functions 'lazy-shot-after-change-function t)
(if font-lock-mode
- (add-hook 'after-change-functions 'font-lock-after-change-function
- nil t)))
+ (add-hook 'after-change-functions 'font-lock-after-change-function t
t)))
(provide 'lazy-shot)
--
Jerry James
http://www.jamezone.org/
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-patches
Re: [AC21.4] Adapt to differences in compiled font-lock lists
10 years, 2 months
Vin Shelton
COMMIT 21.4
On Wed, Sep 24, 2014 at 2:33 PM, Vin Shelton <acs(a)xemacs.org> wrote:
> On Wed, Sep 24, 2014 at 11:43 AM, Jerry James <james(a)xemacs.org> wrote:
>> RECOMMEND 21.4
>>
>> This is the patch we discussed a few weeks ago. It was applied to
>> 21.5 back in 2008. This patch adapts some code in font-lock.el to
>> differences between the Emacs and XEmacs compiled font-lock lists.Thanks, Jerry!
>
> I reformatted your ChangeLog and will commit the attached change to 21.4.
>
> While I am there, I have a menubar patch from Byrel that was applied
> to 21.5 at the end of 2013, so I have applied that (with some
> massaging) to 21.4.
>
> Byrel - the only changes I had to make were to change were to change
> two occurrences (one in the patch and one in the context) of
>
> (delete* item parent)
>
> to
>
> (delq item parent)
>
> this latter seems to be the way the 21.4 code was written, but please review.
>
> I will commit these patches pending your review.
>
> Regards,
> Vin
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-patches
[C21.5] Do not insert timestamps in .elc files
10 years, 2 months
Jerry James
COMMIT 21.5
On Sat, Sep 27, 2014 at 1:17 AM, Stephen J. Turnbull <stephen(a)xemacs.org>
wrote:
> APPROVE 21.5
>
> Jerry James writes:
>
> > > I'm not sure I agree with this, though. Why not have the build do
> > >
> > > xemacs -eval '(setq user-mail-address "buildbot(a)builder.com")'
> >
> > Good point. That would be fine.
> [...]
>
> > Agreed. How about this patch, then?
>
> "Obviously correct", to borrow Martin's phrase. Ship it!
>
> Steve
I have pushed this patch.
--
Jerry James
http://www.jamezone.org/
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-patches
commit/XEmacs: Jerry James: Do not insert timestamps into .elcs files for reproducibility. See
10 years, 2 months
Bitbucket
1 new commit in XEmacs:
https://bitbucket.org/xemacs/xemacs/commits/b527c25f36ce/
Changeset: b527c25f36ce
User: Jerry James
Date: 2014-09-29 16:44:50+00:00
Summary: Do not insert timestamps into .elcs files for reproducibility. See
<CAHCOHQnEpzvbiu6cQMwc+3yYMxadgNUt=b+=Z1HBc91CMHTMDw(a)mail.gmail.com> in
xemacs-patches.
Affected #: 2 files
diff -r be31f7878b0da33c1ba3b87862f589a9a7d4a659 -r b527c25f36ce63931d68e37353ca9fce94f2890d lisp/ChangeLog
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2014-09-25 Jerry James <james(a)xemacs.org>
+
+ * bytecomp.el (byte-compile-insert-header): do not insert
+ timestamps in .elc comments to get reproducible builds.
+
2014-08-05 Aidan Kehoe <kehoea(a)parhasard.net>
* keymap.el:
diff -r be31f7878b0da33c1ba3b87862f589a9a7d4a659 -r b527c25f36ce63931d68e37353ca9fce94f2890d lisp/bytecomp.el
--- a/lisp/bytecomp.el
+++ b/lisp/bytecomp.el
@@ -2159,8 +2159,7 @@
(insert "\n;;; compiled by "
(or (and (boundp 'user-mail-address) user-mail-address)
(concat (user-login-name) "@" (system-name)))
- " on "
- (current-time-string) "\n;;; from file " filename "\n")
+ "\n;;; from file " filename "\n")
(insert ";;; emacs version " emacs-version ".\n")
(insert ";;; bytecomp version " byte-compile-version "\n;;; "
(cond
Repository URL: https://bitbucket.org/xemacs/xemacs/
--
This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-patches
[PATCH 21.5] Do not insert timestamps in .elc files
10 years, 2 months
Jerry James
PATCH 21.5
Over on xemacs-beta, Stephen J. Turnbull <stephen(a)xemacs.org> wrote:
> Why not just make it a commit-time constant? That mailbox is great!
:-) I hoped somebody would like that. My favorite of all time,
though, was the email address of Patrice Godefroid when he was at Bell
Labs: god(a)att.com.
> No, I don't see any reason to keep it. AFAIK the reason to have it in
> the first place was to make it sort of possible to identify the build
> that compiled the elc, but the VCS id is much more accurate about the
> code base.
>
> But there are going to be files that vary anyway; I'm pretty sure
> there's code protected by compile-time features (like Mats's
> gnus-use-idna), even in core.
Sure. The use case of interest is compiling on systems that vary only
in CPU architecture. They will have the same sets of software
installed, with exactly the same versions, etc. This change will make
it possible to verify that we're getting identical results in such
cases, which means the files can be shared across all architectures
(we can produce a "noarch" package, to use RPM terminology).
Anyway, here's the patch.
diff -r be31f7878b0d lisp/ChangeLog
--- a/lisp/ChangeLog Tue Sep 23 16:50:48 2014 -0600
+++ b/lisp/ChangeLog Thu Sep 25 11:58:18 2014 -0600
@@ -1,3 +1,8 @@
+2014-09-25 Jerry James <james(a)xemacs.org>
+
+ * bytecomp.el (byte-compile-insert-header): do not insert email
+ addresses or timestamps in comments to get reproducible builds.
+
2014-08-05 Aidan Kehoe <kehoea(a)parhasard.net>
* keymap.el:
diff -r be31f7878b0d lisp/bytecomp.el
--- a/lisp/bytecomp.el Tue Sep 23 16:50:48 2014 -0600
+++ b/lisp/bytecomp.el Thu Sep 25 11:58:18 2014 -0600
@@ -2156,11 +2156,7 @@
finally return res)))
(setq comments
(with-string-as-buffer-contents ""
- (insert "\n;;; compiled by "
- (or (and (boundp 'user-mail-address) user-mail-address)
- (concat (user-login-name) "@" (system-name)))
- " on "
- (current-time-string) "\n;;; from file " filename "\n")
+ (insert "\n;;; compiled from file " filename "\n")
(insert ";;; emacs version " emacs-version ".\n")
(insert ";;; bytecomp version " byte-compile-version "\n;;; "
(cond
--
Jerry James
http://www.jamezone.org/
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-patches
[A21.4] Adapt to differences in compiled font-lock lists
10 years, 3 months
Vin Shelton
On Wed, Sep 24, 2014 at 11:43 AM, Jerry James <james(a)xemacs.org> wrote:
> RECOMMEND 21.4
>
> This is the patch we discussed a few weeks ago. It was applied to
> 21.5 back in 2008. This patch adapts some code in font-lock.el to
> differences between the Emacs and XEmacs compiled font-lock lists.Thanks, Jerry!
I reformatted your ChangeLog and will commit the attached change to 21.4.
While I am there, I have a menubar patch from Byrel that was applied
to 21.5 at the end of 2013, so I have applied that (with some
massaging) to 21.4.
Byrel - the only changes I had to make were to change were to change
two occurrences (one in the patch and one in the context) of
(delete* item parent)
to
(delq item parent)
this latter seems to be the way the 21.4 code was written, but please review.
I will commit these patches pending your review.
Regards,
Vin
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-patches
[21.4] Adapt to differences in compiled font-lock lists
10 years, 3 months
Jerry James
RECOMMEND 21.4
This is the patch we discussed a few weeks ago. It was applied to
21.5 back in 2008. This patch adapts some code in font-lock.el to
differences between the Emacs and XEmacs compiled font-lock lists.
Aidan hasn't reappeared, so I don't know which font-lock.el comments
he found confusing. Therefore, I am submitting this patch in the same
form it had when applied to 21.5
diff -r af4d0249573a lisp/ChangeLog
--- a/lisp/ChangeLog Thu Apr 18 23:05:34 2013 -0400
+++ b/lisp/ChangeLog Wed Sep 24 09:40:01 2014 -0600
@@ -1,3 +1,11 @@
+2014-09-24 Jerry James <james(a)xemacs.org>
+
+ * font-lock.el (font-lock-add-keywords): Adapt to differences in
+ Emacs and XEmacs compiled font-lock lists.
+ (font-lock-remove-keywords): Ditto.
+ (font-lock-set-defaults-1): Make changes specified by
+ font-lock-keywords-alist and font-lock-removed-keywords-alist.
+
2012-01-08 Vin Shelton <acs(a)xemacs.org>
* cus-face.el: autoload custom-set-face-bold.
diff -r af4d0249573a lisp/font-lock.el
--- a/lisp/font-lock.el Thu Apr 18 23:05:34 2013 -0400
+++ b/lisp/font-lock.el Wed Sep 24 09:40:01 2014 -0600
@@ -951,7 +951,7 @@
(let ((was-compiled (eq (car font-lock-keywords) t)))
;; Bring back the user-level (uncompiled) keywords.
(if was-compiled
- (setq font-lock-keywords (cadr font-lock-keywords)))
+ (setq font-lock-keywords (cdr font-lock-keywords)))
;; Now modify or replace them.
(if (eq how 'set)
(setq font-lock-keywords keywords)
@@ -1061,7 +1061,7 @@
(let ((was-compiled (eq (car font-lock-keywords) t)))
;; Bring back the user-level (uncompiled) keywords.
(if was-compiled
- (setq font-lock-keywords (cadr font-lock-keywords)))
+ (setq font-lock-keywords (cdr font-lock-keywords)))
;; Edit them.
(setq font-lock-keywords (copy-sequence font-lock-keywords))
@@ -2032,7 +2032,10 @@
font-lock-defaults
(font-lock-find-font-lock-defaults major-mode)))
(keywords (font-lock-choose-keywords
- (nth 0 defaults) font-lock-maximum-decoration)))
+ (nth 0 defaults) font-lock-maximum-decoration))
+ (local (cdr (assq major-mode font-lock-keywords-alist)))
+ (removed-keywords
+ (cdr-safe (assq major-mode font-lock-removed-keywords-alist))))
;; Keywords?
(setq font-lock-keywords (if (fboundp keywords)
@@ -2097,7 +2100,14 @@
;; older way:
;; defaults not specified at all, so use `beginning-of-defun'.
(setq font-lock-beginning-of-syntax-function
- 'beginning-of-defun)))))
+ 'beginning-of-defun)))
+
+ ;; Local fontification?
+ (while local
+ (font-lock-add-keywords nil (car (car local)) (cdr (car local)))
+ (setq local (cdr local)))
+ (when removed-keywords
+ (font-lock-remove-keywords nil removed-keywords))))
(setq font-lock-cache-position (make-marker))
(setq font-lock-defaults-computed t)))
--
Jerry James
http://www.jamezone.org/
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-patches
commit/XEmacs: Jerry James: Fix bignum/bigfloat memory leaks. See xemacs-patches message
10 years, 3 months
Bitbucket
1 new commit in XEmacs:
https://bitbucket.org/xemacs/xemacs/commits/be31f7878b0d/
Changeset: be31f7878b0d
User: Jerry James
Date: 2014-09-23 22:50:48+00:00
Summary: Fix bignum/bigfloat memory leaks. See xemacs-patches message
<CAHCOHQmYDTHSUhVSRmyGpoeUAX3kS6Ua14p6FcNzzDm0i3GaRQ(a)mail.gmail.com>.
Affected #: 2 files
diff -r 2f22818d92d42460586af6894cdbc4166cba3e6b -r be31f7878b0da33c1ba3b87862f589a9a7d4a659 src/ChangeLog
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+2014-09-23 Jerry James <james(a)xemacs.org>
+
+ * floatfns.c (round_two_bignum_1): Fix memory leak.
+ (round_two_bigfloat): Ditto.
+
2014-09-06 Aidan Kehoe <kehoea(a)parhasard.net>
* select-x.c (Fx_store_cutbuffer_internal):
diff -r 2f22818d92d42460586af6894cdbc4166cba3e6b -r be31f7878b0da33c1ba3b87862f589a9a7d4a659 src/floatfns.c
--- a/src/floatfns.c
+++ b/src/floatfns.c
@@ -1681,6 +1681,10 @@
*res = make_bignum_bg (floored);
*remain = make_bignum_bg (scratch_bignum);
}
+ bignum_fini (flsecond);
+ bignum_fini (floored);
+ bignum_fini (flooring);
+ bignum_fini (hi2);
}
static Lisp_Object
@@ -1835,6 +1839,7 @@
bigfloat_div (divided, XBIGFLOAT_DATA (number), XBIGFLOAT_DATA (divisor));
res0 = round_one_bigfloat_1 (divided);
+ bigfloat_fini (divided);
bigfloat_set_prec (scratch_bigfloat, prec);
bigfloat_set_prec (scratch_bigfloat2, prec);
Repository URL: https://bitbucket.org/xemacs/xemacs/
--
This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-patches
[AC] Fix bignum/bigfloat memory leaks
10 years, 3 months
Jerry James
APPROVE COMMIT
I'm committing this without waiting under the "obviously correct"
doctrine. We were creating bignums and bigfloats on the stack, then
not releasing memory properly before they went out of scope. (We were
calling mpz_init() without a corresponding mpz_clear(), and likewise
for mpf_init() and mpf_clear(), for those familiar with the GMP
interface.)
diff -r 2f22818d92d4 src/ChangeLog
--- a/src/ChangeLog Sat Sep 06 14:30:15 2014 +0100
+++ b/src/ChangeLog Tue Sep 23 16:44:06 2014 -0600
@@ -1,3 +1,8 @@
+2014-09-23 Jerry James <james(a)xemacs.org>
+
+ * floatfns.c (round_two_bignum_1): Fix memory leak.
+ (round_two_bigfloat): Ditto.
+
2014-09-06 Aidan Kehoe <kehoea(a)parhasard.net>
* select-x.c (Fx_store_cutbuffer_internal):
diff -r 2f22818d92d4 src/floatfns.c
--- a/src/floatfns.c Sat Sep 06 14:30:15 2014 +0100
+++ b/src/floatfns.c Tue Sep 23 16:44:06 2014 -0600
@@ -1681,6 +1681,10 @@
*res = make_bignum_bg (floored);
*remain = make_bignum_bg (scratch_bignum);
}
+ bignum_fini (flsecond);
+ bignum_fini (floored);
+ bignum_fini (flooring);
+ bignum_fini (hi2);
}
static Lisp_Object
@@ -1835,6 +1839,7 @@
bigfloat_div (divided, XBIGFLOAT_DATA (number), XBIGFLOAT_DATA (divisor));
res0 = round_one_bigfloat_1 (divided);
+ bigfloat_fini (divided);
bigfloat_set_prec (scratch_bigfloat, prec);
bigfloat_set_prec (scratch_bigfloat2, prec);
--
Jerry James
http://www.jamezone.org/
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-patches
commit/xemacs-packages: 4 new changesets
10 years, 3 months
Bitbucket
4 new commits in xemacs-packages:
https://bitbucket.org/xemacs/xemacs-packages/commits/3f3b78e87d1e/
Changeset: 3f3b78e87d1e
User: Norbert Koch
Date: 2014-08-08 19:18:00
Summary: update cc-mode
Affected #: 1 file
diff -r 32a20370d3e98d202f98258e72b4ae51106baf86 -r 3f3b78e87d1ef0634936c198952d0287de83cf83 .hgsubstate
--- a/.hgsubstate
+++ b/.hgsubstate
@@ -17,7 +17,7 @@
3e0a184be3acd281672f1c918d14aedf91caa815 xemacs-packages/c-support
f9bedd372b048eb45be81e9de245052c2dddd47b xemacs-packages/calc
dd6af4aede7f6cfe3e7be399dae1aa6faa73f735 xemacs-packages/calendar
-603cfb35e5525afe5466c6f6860b3068b0493bbf xemacs-packages/cc-mode
+1bb8128d249099c24d9ad4535f40d4394d90c84b xemacs-packages/cc-mode
c0beb9512f2969a7ba4d5acf8b4ae850abe4796b xemacs-packages/cedet-common
7b5eba68be71a29a327c6deedf00c96590a06e94 xemacs-packages/clearcase
a58b300984e8fc66e8309ff4b60d9da09a382057 xemacs-packages/cogre
https://bitbucket.org/xemacs/xemacs-packages/commits/26f39b824ab3/
Changeset: 26f39b824ab3
User: Norbert Koch
Date: 2014-09-08 09:59:38
Summary: package update
Affected #: 1 file
diff -r 3f3b78e87d1ef0634936c198952d0287de83cf83 -r 26f39b824ab331cbb2cd93bdc67cb6c916640836 .hgsubstate
--- a/.hgsubstate
+++ b/.hgsubstate
@@ -2,7 +2,7 @@
e1be555e8487c720f1655aaa17b94b8607fe9945 mule-packages/egg-its
28a498c892b3f8f3c8d6a4d03dc07a1239722875 mule-packages/latin-euro-standards
0db6a485b423482b9deb61d0df8c459dfb5755d7 mule-packages/latin-unity
-fb24044de5ab711da585692cd888b37d4c0ad32e mule-packages/leim
+07bc90008d482d880370a132e08a0ed5ff3b5b66 mule-packages/leim
4196835ebe0fd2e03a0a7e077703d0cae55b67e9 mule-packages/locale
7af608160c697a0e6528567347f18a6094ff4ead mule-packages/lookup
bfa0cf1e094d020e959bd26ae59277d320edce3a mule-packages/mule-base
@@ -16,8 +16,8 @@
e0e5d9739b9d2535205a24f81968c366a187fd15 xemacs-packages/build
3e0a184be3acd281672f1c918d14aedf91caa815 xemacs-packages/c-support
f9bedd372b048eb45be81e9de245052c2dddd47b xemacs-packages/calc
-dd6af4aede7f6cfe3e7be399dae1aa6faa73f735 xemacs-packages/calendar
-1bb8128d249099c24d9ad4535f40d4394d90c84b xemacs-packages/cc-mode
+dc56f945b97839c9c1cbfacd9877eb8e93b9f426 xemacs-packages/calendar
+3a1093a26bbdc2c77ecf381cade7be1de40931ae xemacs-packages/cc-mode
c0beb9512f2969a7ba4d5acf8b4ae850abe4796b xemacs-packages/cedet-common
7b5eba68be71a29a327c6deedf00c96590a06e94 xemacs-packages/clearcase
a58b300984e8fc66e8309ff4b60d9da09a382057 xemacs-packages/cogre
@@ -54,7 +54,7 @@
a8fb9ad33475365fca762650652115b5a94ec518 xemacs-packages/games
62ad3c5812dd7fb03ef09d35ed6cf238d18c5142 xemacs-packages/general-docs
aecef56c4d796396202c4b9a548c12e71b3b860b xemacs-packages/gnats
-075087fcf3466265e27a32947dd62c192af90358 xemacs-packages/gnus
+28ae4fab955583570cd551a16e581094d8eaecc3 xemacs-packages/gnus
391505b74677a65f1a8bda13c864dbfd56c7bc9d xemacs-packages/guided-tour
40d032f0acb041099464794b0eb99278ab2e2eb9 xemacs-packages/haskell-mode
96e4808c5d4041b8515e79e9a643781b4445d6dc xemacs-packages/hm--html-menus
@@ -73,7 +73,7 @@
c59650af035f31ee2a59eb56debda01434f13e90 xemacs-packages/mine
59715eb96f78c4dbe8a7aa379d3c7bc83c9216ed xemacs-packages/misc-games
58970096e92acc13a45fcbea551d2edb54781271 xemacs-packages/mmm-mode
-0cd105f5da281f3e67fe1aa40545818ead3274b7 xemacs-packages/net-utils
+e6d6b991b1e7ac9a8bdce5db7db55849c2304a0b xemacs-packages/net-utils
5587cf2400807f0fb496b072465fa054c680aa73 xemacs-packages/ocaml
612e1459a31500254c0a5ef6b693310f85c01047 xemacs-packages/oo-browser
7f5da95927f24ec6b5c95e8c4d6633fb6b6a8595 xemacs-packages/os-utils
@@ -123,7 +123,7 @@
a300d1edecaaf3145be93cc6315698839ceadc60 xemacs-packages/vm
695db87625ccbccb52d6ca22c7ad7734a69854d4 xemacs-packages/w3
12d693a15798616da7569cb572d80e549b13dfea xemacs-packages/x-symbol
-06f247e269bfbba4b2944ab529e846dfab7eae2e xemacs-packages/xemacs-base
+956c7e5673fe0fa42bfd0733fe425127b92d46ac xemacs-packages/xemacs-base
8e2a462a5f49d1769b22d4c7e1c5d92b9129be6e xemacs-packages/xemacs-devel
17b87e1bcfcde7e61ef484196689181725d378df xemacs-packages/xetla
a9de65b9605c3588b19d1a82aa5638f651a3fb03 xemacs-packages/xlib
https://bitbucket.org/xemacs/xemacs-packages/commits/77a22b543f62/
Changeset: 77a22b543f62
User: Norbert Koch
Date: 2014-09-08 10:02:47
Summary: XEmacs Package Release
Affected #: 1 file
diff -r 26f39b824ab331cbb2cd93bdc67cb6c916640836 -r 77a22b543f621dda1be7024db6e88e8fc7955630 ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-09-08 Norbert Koch <viteno(a)xemacs.org>
+
+ * Packages released: xemacs-base, cc-mode, calendar, net-utils, gnus, leim.
+
2014-07-15 Norbert Koch <viteno(a)xemacs.org>
* Packages released: fsf-compat, ispell.
https://bitbucket.org/xemacs/xemacs-packages/commits/c4daca68f4f0/
Changeset: c4daca68f4f0
User: Norbert Koch
Date: 2014-09-09 08:38:43
Summary: package pre-release
Affected #: 1 file
diff -r 77a22b543f621dda1be7024db6e88e8fc7955630 -r c4daca68f4f03ec1d64e28303ac46dce3ee3e785 .hgsubstate
--- a/.hgsubstate
+++ b/.hgsubstate
@@ -2,7 +2,7 @@
e1be555e8487c720f1655aaa17b94b8607fe9945 mule-packages/egg-its
28a498c892b3f8f3c8d6a4d03dc07a1239722875 mule-packages/latin-euro-standards
0db6a485b423482b9deb61d0df8c459dfb5755d7 mule-packages/latin-unity
-07bc90008d482d880370a132e08a0ed5ff3b5b66 mule-packages/leim
+92387d42b154080b6c06f5cce403b26926b8c7bc mule-packages/leim
4196835ebe0fd2e03a0a7e077703d0cae55b67e9 mule-packages/locale
7af608160c697a0e6528567347f18a6094ff4ead mule-packages/lookup
bfa0cf1e094d020e959bd26ae59277d320edce3a mule-packages/mule-base
@@ -16,8 +16,8 @@
e0e5d9739b9d2535205a24f81968c366a187fd15 xemacs-packages/build
3e0a184be3acd281672f1c918d14aedf91caa815 xemacs-packages/c-support
f9bedd372b048eb45be81e9de245052c2dddd47b xemacs-packages/calc
-dc56f945b97839c9c1cbfacd9877eb8e93b9f426 xemacs-packages/calendar
-3a1093a26bbdc2c77ecf381cade7be1de40931ae xemacs-packages/cc-mode
+70908a6be1fb833d22b89242287aabafa67adea0 xemacs-packages/calendar
+62e1d14d01888223943fef31678bf2e565c453f3 xemacs-packages/cc-mode
c0beb9512f2969a7ba4d5acf8b4ae850abe4796b xemacs-packages/cedet-common
7b5eba68be71a29a327c6deedf00c96590a06e94 xemacs-packages/clearcase
a58b300984e8fc66e8309ff4b60d9da09a382057 xemacs-packages/cogre
@@ -54,7 +54,7 @@
a8fb9ad33475365fca762650652115b5a94ec518 xemacs-packages/games
62ad3c5812dd7fb03ef09d35ed6cf238d18c5142 xemacs-packages/general-docs
aecef56c4d796396202c4b9a548c12e71b3b860b xemacs-packages/gnats
-28ae4fab955583570cd551a16e581094d8eaecc3 xemacs-packages/gnus
+514c65d4f91403beb96fabac0564293108a3108e xemacs-packages/gnus
391505b74677a65f1a8bda13c864dbfd56c7bc9d xemacs-packages/guided-tour
40d032f0acb041099464794b0eb99278ab2e2eb9 xemacs-packages/haskell-mode
96e4808c5d4041b8515e79e9a643781b4445d6dc xemacs-packages/hm--html-menus
@@ -73,7 +73,7 @@
c59650af035f31ee2a59eb56debda01434f13e90 xemacs-packages/mine
59715eb96f78c4dbe8a7aa379d3c7bc83c9216ed xemacs-packages/misc-games
58970096e92acc13a45fcbea551d2edb54781271 xemacs-packages/mmm-mode
-e6d6b991b1e7ac9a8bdce5db7db55849c2304a0b xemacs-packages/net-utils
+4ae185f113b7cc4c39b235bab17db3c478d885e8 xemacs-packages/net-utils
5587cf2400807f0fb496b072465fa054c680aa73 xemacs-packages/ocaml
612e1459a31500254c0a5ef6b693310f85c01047 xemacs-packages/oo-browser
7f5da95927f24ec6b5c95e8c4d6633fb6b6a8595 xemacs-packages/os-utils
@@ -123,7 +123,7 @@
a300d1edecaaf3145be93cc6315698839ceadc60 xemacs-packages/vm
695db87625ccbccb52d6ca22c7ad7734a69854d4 xemacs-packages/w3
12d693a15798616da7569cb572d80e549b13dfea xemacs-packages/x-symbol
-956c7e5673fe0fa42bfd0733fe425127b92d46ac xemacs-packages/xemacs-base
+ab20b62d00275b0b8d2caaf681aef0bc23ccbe73 xemacs-packages/xemacs-base
8e2a462a5f49d1769b22d4c7e1c5d92b9129be6e xemacs-packages/xemacs-devel
17b87e1bcfcde7e61ef484196689181725d378df xemacs-packages/xetla
a9de65b9605c3588b19d1a82aa5638f651a3fb03 xemacs-packages/xlib
Repository URL: https://bitbucket.org/xemacs/xemacs-packages/
--
This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-patches