[AC] Understand CLOS method combination types for indentation
17 years, 8 months
Didier Verna
NOTE: This patch has been committed. The version below is
informational only (whitespace differences have been removed).
Dear reviewers,
the following patch makes cl-indent recognize method combination types
as well as specifiers, thus indent defmethod properly.
xemacs-packages/prog-modes/ChangeLog addition:
2007-02-06 Didier Verna <didier(a)xemacs.org>
* cl-indent.el (lisp-indent-defmethod): Understand method
combination types as well as specifiers.
XEmacs Packages source patch:
Diff command: runsocks cvs -q diff -u -t -b -B -w
Files affected: xemacs-packages/prog-modes/cl-indent.el
Index: xemacs-packages/prog-modes/cl-indent.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/prog-modes/cl-indent.el,v
retrieving revision 1.1.1.1
diff -u -u -t -b -B -w -r1.1.1.1 cl-indent.el
--- xemacs-packages/prog-modes/cl-indent.el 14 Jan 1998 06:44:55 -0000 1.1.1.1
+++ xemacs-packages/prog-modes/cl-indent.el 6 Feb 2007 15:31:05 -0000
@@ -382,7 +382,10 @@
(forward-sexp)
(forward-sexp)
(backward-sexp)
- (if (looking-at ":")
+ ;; don't look only for a colon: we would catch
+ ;; before, after and around methods, but we would
+ ;; miss method combination types -- dvl
+ (if (not (looking-at "("))
t
nil))
nil))
--
The @-quartet now available on iTunes ! http://www.didierverna.com/records/
Didier Verna EPITA / LRDE, 14-16 rue Voltaire Tel.+33 (1) 44 08 01 85
94276 Le Kremlin-Bicêtre, France Fax.+33 (1) 53 14 59 22
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-patches
[AC] Fix sh-mode function
17 years, 8 months
Didier Verna
NOTE: This patch has been committed. The version below is
informational only (whitespace differences have been removed).
Dear reviewers,
the following patch fixes the definition for sh-mode (otherwise,
XEmacs tries to execute the function nil). Daniel, I don't know the status of
sh-script.el in GNU Emacs; ours is version 2.0f, imported by Jérôme Marant in
October 2005.
xemacs-packages/sh-script/ChangeLog addition:
2007-02-06 Didier Verna <didier(a)xemacs.org>
* sh-script.el (sh-mode): Derive from a real mode
(fundamental-mode), not from nil.
XEmacs Packages source patch:
Diff command: runsocks cvs -q diff -u -t -b -B -w
Files affected: xemacs-packages/sh-script/sh-script.el
Index: xemacs-packages/sh-script/sh-script.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/sh-script/sh-script.el,v
retrieving revision 1.9
diff -u -u -t -b -B -w -r1.9 sh-script.el
--- xemacs-packages/sh-script/sh-script.el 15 Oct 2005 15:41:59 -0000 1.9
+++ xemacs-packages/sh-script/sh-script.el 6 Feb 2007 15:20:28 -0000
@@ -1233,7 +1233,7 @@
(put 'sh-mode 'mode-class 'special)
;;;###autoload
-(define-derived-mode sh-mode nil "Shell-script"
+(define-derived-mode sh-mode fundamental-mode "Shell-script"
"Major mode for editing shell scripts.
This mode works for many shells, since they all have roughly the same syntax,
as far as commands, arguments, variables, pipes, comments etc. are concerned.
--
The @-quartet now available on iTunes ! http://www.didierverna.com/records/
Didier Verna EPITA / LRDE, 14-16 rue Voltaire Tel.+33 (1) 44 08 01 85
94276 Le Kremlin-Bicêtre, France Fax.+33 (1) 53 14 59 22
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-patches
[AC] Zap dead variable
17 years, 8 months
Michael Sperber
2007-02-05 Mike Sperber <mike(a)xemacs.org>
* fileio.c (Finsert_file_contents_internal): Clean up dead
`handler' variable.
--
Cheers =8-} Mike
Friede, Völkerverständigung und überhaupt blabla
Index: src/fileio.c
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/fileio.c,v
retrieving revision 1.110
diff -u -r1.110 fileio.c
--- src/fileio.c 8 Jan 2007 13:33:43 -0000 1.110
+++ src/fileio.c 5 Feb 2007 15:28:12 -0000
@@ -2886,7 +2886,7 @@
Charcount inserted = 0;
int speccount;
struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
- Lisp_Object handler = Qnil, val;
+ Lisp_Object val;
int total;
Ibyte read_buf[READ_BUF_SIZE];
int mc_count;
@@ -2909,7 +2909,7 @@
curbuf = wrap_buffer (buf);
- GCPRO5 (filename, val, visit, handler, curbuf);
+ GCPRO4 (filename, val, visit, curbuf);
mc_count = (NILP (replace)) ?
begin_multiple_change (buf, BUF_PT (buf), BUF_PT (buf)) :
@@ -3230,31 +3230,25 @@
{
if (!EQ (buf->undo_list, Qt))
buf->undo_list = Qnil;
- if (NILP (handler))
- {
- buf->modtime = st.st_mtime;
- buf->filename = filename;
- /* XEmacs addition: */
- /* This function used to be in C, ostensibly so that
- it could be called here. But that's just silly.
- There's no reason C code can't call out to Lisp
- code, and it's a lot cleaner this way. */
- /* Note: compute-buffer-file-truename is called for
- side-effect! Its return value is intentionally
- ignored. */
- if (!NILP (Ffboundp (Qcompute_buffer_file_truename)))
- call1 (Qcompute_buffer_file_truename, wrap_buffer (buf));
- }
+ buf->modtime = st.st_mtime;
+ buf->filename = filename;
+ /* XEmacs addition: */
+ /* This function used to be in C, ostensibly so that
+ it could be called here. But that's just silly.
+ There's no reason C code can't call out to Lisp
+ code, and it's a lot cleaner this way. */
+ /* Note: compute-buffer-file-truename is called for
+ side-effect! Its return value is intentionally
+ ignored. */
+ if (!NILP (Ffboundp (Qcompute_buffer_file_truename)))
+ call1 (Qcompute_buffer_file_truename, wrap_buffer (buf));
BUF_SAVE_MODIFF (buf) = BUF_MODIFF (buf);
buf->auto_save_modified = BUF_MODIFF (buf);
buf->saved_size = make_int (BUF_SIZE (buf));
#ifdef CLASH_DETECTION
- if (NILP (handler))
- {
- if (!NILP (buf->file_truename))
- unlock_file (buf->file_truename);
- unlock_file (filename);
- }
+ if (!NILP (buf->file_truename))
+ unlock_file (buf->file_truename);
+ unlock_file (filename);
#endif /* CLASH_DETECTION */
if (not_regular)
RETURN_UNGCPRO (Fsignal (Qfile_error,
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-patches
[AC] Adjust load-path depth for modules
17 years, 8 months
Michael Sperber
Nobody commented on this a while back; I'm committing to flush my
workspace, and to maybe generate some feedback :-) (I do believe it's
the right thing.)
2007-01-27 Mike Sperber <mike(a)xemacs.org>
* setup-paths.el (paths-module-load-path-depth): Add.
* setup-paths.el (paths-construct-module-load-path): For
`module-load-path', use `paths-module-load-path-depth', not
`paths-core-load-path-depth'.
--
Cheers =8-} Mike
Friede, Völkerverständigung und überhaupt blabla
Index: lisp/setup-paths.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/setup-paths.el,v
retrieving revision 1.22
diff -u -r1.22 setup-paths.el
--- lisp/setup-paths.el 14 Mar 2006 00:09:03 -0000 1.22
+++ lisp/setup-paths.el 5 Feb 2007 15:17:10 -0000
@@ -55,6 +55,9 @@
(defvar paths-mule-load-path-depth 0
"Depth of load-path searches in Mule Lisp paths.")
+(defvar paths-module-load-path-depth 1
+ "Depth of load-path searches in module paths.")
+
(defvar paths-default-info-directories
(mapcar (function
(lambda (dirlist)
@@ -243,7 +246,7 @@
(module-load-path
(and module-directory
(paths-find-recursive-load-path (list module-directory)
- paths-core-load-path-depth))))
+ paths-module-load-path-depth))))
(append env-module-path
site-module-load-path
module-load-path)))
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-patches
[auctex] [David Kastrup] [AUCTeX-devel] Maintainer addresses
17 years, 8 months
Stephen J. Turnbull
Uwe,
I propose the attached patch to bring things into line with what David
wants. I think it's way less than perfect, but I don't feel like
fighting with it. At least this way we'll have working addresses in
the package.
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/ChangeLog,v
retrieving revision 1.58
diff -u -r1.58 ChangeLog
--- ChangeLog 12 Feb 2005 17:10:01 -0000 1.58
+++ ChangeLog 3 Feb 2007 14:46:10 -0000
@@ -0,0 +1,35 @@
+2007-02-03 Stephen J. Turnbull <stephen(a)xemacs.org>
+
+ * font-latex.el (Maintainer):
+ * latex.el (Maintainer):
+ * tex-buf.el (Maintainer):
+ * tex-fold.el (Maintainer):
+ * tex-font.el (Maintainer):
+ * tex-fptex.el (Maintainer):
+ * tex-info.el (Maintainer):
+ * tex-mik.el (Maintainer):
+ * etc/alltt.el (Maintainer):
+ * etc/alphanum.el (Maintainer):
+ * etc/amstex.el (Maintainer):
+ * etc/csquotes.el (Maintainer):
+ * etc/doc.el (Maintainer):
+ * etc/emp.el (Maintainer):
+ * etc/jura.el (Maintainer):
+ * etc/jurabib.el (Maintainer):
+ * etc/listings.el (Maintainer):
+ * etc/ltx-base.el (Maintainer):
+ * etc/ltxdoc.el (Maintainer):
+ * etc/mdwlist.el (Maintainer):
+ * etc/nicefrac.el (Maintainer):
+ * etc/slides.el (Maintainer):
+ * etc/units.el (Maintainer):
+ * etc/url.el (Maintainer):
+ * tex.el (Maintainer):
+ * tex.el (TeX-submit-bug-report):
+ Update email address.
+
+ * texi/intro.texi (Introduction):
+ * README:
+ Improve wording, update contact email addresses to point to
+ gnu.org lists, mention XEmacs package lags upstream.
+
Index: README
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/README,v
retrieving revision 1.7
diff -u -r1.7 README
--- README 18 Jan 2005 13:54:41 -0000 1.7
+++ README 3 Feb 2007 14:46:10 -0000
@@ -63,16 +63,27 @@
1.2 Contacts
============
-There has been established a mailing list for help, bug reports, feature
+Several channels have been established for help, bug reports, feature
requests and general discussion about AUCTeX. You're very welcome to
-join. Traffic average at an article by day, but they come in bursts.
-If you are only interested in information on updates, you could refer to
-the newsgroups `comp.text.tex' and `gnu.emacs.sources'.
+join. If you are only interested in information on updates, you could
+refer to the newsgroups `comp.text.tex' and `gnu.emacs.sources'.
- If you want to contact the AUCTeX mailing list, send mail to
-<auc-tex-subscribe(a)sunsite.dk> in order to join. Articles should be
-sent to <auc-tex(a)sunsite.dk>.
+Bug reports on AUCTeX may be sent to <bug-auctex(a)gnu.org>. To join
+the list send mail to <bug-auctex-subscribe(a)gnu.org>.
- To contact the current maintainers of AUCTeX directly, email
-<auc-tex_mgr(a)sunsite.dk>.
+The AUCTeX maintainers can be reached at <auctex-devel(a)gnu.org>.
+Subscription requests should be sent to <auctex-devel-subscribe(a)gnu.org>.
+
+XEmacs and AUCTeX
+-----------------
+
+Note that the XEmacs package version currently lags the upstream
+version substantionally. If you are missing features or there seems
+to be a bug in features related to editing documents, you are probably
+best advised to remove the XEmacs package and install the upstream
+version before contacting the AUCTeX maintainers.
+
+If you are having trouble installing the XEmacs package, or wish to
+help in updating the package version to the current upstream version,
+then <xemacs-beta(a)xemacs.org> is the appropriate channel.
Index: font-latex.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/font-latex.el,v
retrieving revision 1.14
diff -u -r1.14 font-latex.el
--- font-latex.el 11 Feb 2005 19:02:01 -0000 1.14
+++ font-latex.el 3 Feb 2007 14:46:11 -0000
@@ -4,7 +4,7 @@
;; Authors: Peter S. Galbraith <psg(a)debian.org>
;; Simon Marshall <Simon.Marshall(a)esrin.esa.it>
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Created: 06 July 1996
;; Keywords: tex, wp, faces
Index: latex.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/latex.el,v
retrieving revision 1.11
diff -u -r1.11 latex.el
--- latex.el 11 Feb 2005 19:02:01 -0000 1.11
+++ latex.el 3 Feb 2007 14:46:11 -0000
@@ -4,7 +4,7 @@
;; Copyright (C) 1993, 1994, 1995, 1996, 1997, 1999, 2000,
;; 2003, 2004, 2005 Free Software Foundation, Inc.
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Keywords: tex
;; This file is part of AUCTeX.
Index: tex-buf.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/tex-buf.el,v
retrieving revision 1.9
diff -u -r1.9 tex-buf.el
--- tex-buf.el 11 Feb 2005 19:02:01 -0000 1.9
+++ tex-buf.el 3 Feb 2007 14:46:11 -0000
@@ -4,7 +4,7 @@
;; 2005 Free Software Foundation, Inc.
;; Copyright (C) 1991 Kresten Krab Thorup
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Keywords: tex, wp
;; This file is part of AUCTeX.
Index: tex-fold.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/tex-fold.el,v
retrieving revision 1.2
diff -u -r1.2 tex-fold.el
--- tex-fold.el 18 Jan 2005 13:54:42 -0000 1.2
+++ tex-fold.el 3 Feb 2007 14:46:11 -0000
@@ -3,7 +3,7 @@
;; Copyright (C) 2004 Free Software Foundation, Inc.
;; Author: Ralf Angeli <angeli(a)iwi.uni-sb.de>
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Created: 2004-07-04
;; Keywords: tex, wp
Index: tex-font.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/tex-font.el,v
retrieving revision 1.1
diff -u -r1.1 tex-font.el
--- tex-font.el 20 Feb 2003 16:35:34 -0000 1.1
+++ tex-font.el 3 Feb 2007 14:46:11 -0000
@@ -3,7 +3,7 @@
;; Copyright (C) 1985, 86, 89, 92, 94, 95, 96, 97, 98, 1999
;; Free Software Foundation, Inc.
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Keywords: tex, faces
;; This file is part of AUC TeX.
Index: tex-fptex.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/tex-fptex.el,v
retrieving revision 1.2
diff -u -r1.2 tex-fptex.el
--- tex-fptex.el 13 Sep 2004 15:34:06 -0000 1.2
+++ tex-fptex.el 3 Feb 2007 14:46:11 -0000
@@ -4,7 +4,7 @@
;; Copyright (C) 2004 Free Software Foundation, Inc.
;; Author: Fabrice Popineau <Fabrice.Popineau(a)supelec.fr>
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Keywords: tex
;; This file is part of AUCTeX.
Index: tex-info.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/tex-info.el,v
retrieving revision 1.8
diff -u -r1.8 tex-info.el
--- tex-info.el 18 Jan 2005 13:54:42 -0000 1.8
+++ tex-info.el 3 Feb 2007 14:46:11 -0000
@@ -3,7 +3,7 @@
;; Copyright (C) 1993, 1994, 1997, 2000, 2001,
;; 2004 Free Software Foundation, Inc.
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Keywords: tex
;; This file is part of AUCTeX.
Index: tex-mik.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/tex-mik.el,v
retrieving revision 1.4
diff -u -r1.4 tex-mik.el
--- tex-mik.el 13 Sep 2004 15:34:06 -0000 1.4
+++ tex-mik.el 3 Feb 2007 14:46:11 -0000
@@ -3,7 +3,7 @@
;; Copyright (C) 1999, 2000, 2001, 2004 Free Software Foundation, Inc.
;; Author: Per Abrahamsen <abraham(a)dina.kvl.dk>
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Keywords: tex
;; This file is part of AUCTeX.
Index: tex.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/tex.el,v
retrieving revision 1.13
diff -u -r1.13 tex.el
--- tex.el 11 Feb 2005 19:02:02 -0000 1.13
+++ tex.el 3 Feb 2007 14:46:12 -0000
@@ -5,7 +5,7 @@
;; Copyright (C) 1987 Lars Peter Fischer
;; Copyright (C) 1991 Kresten Krab Thorup
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Keywords: tex
;; This file is part of AUCTeX.
@@ -4385,14 +4385,13 @@
Don't hesitate to report any problems or inaccurate documentation.
-If you don't have setup sending mail from (X)Emacs, please copy
-the output buffer into your mail program, as is gives use
-important information about your AUCTeX version and AUCTeX
-configuration."
+If you have not set up sending mail from (X)Emacs, please copy the
+output buffer into your mail program, as it gives us important
+information about your AUCTeX version and AUCTeX configuration."
(interactive)
(require 'reporter)
(reporter-submit-bug-report
- "auc-tex(a)sunsite.dk"
+ "bug-auctex(a)gnu.org"
(concat "AUCTeX " AUCTeX-version
(if (string-match "^CVS-" AUCTeX-version)
(format " (%s)" AUCTeX-date)
Index: etc/alltt.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/etc/alltt.el,v
retrieving revision 1.2
diff -u -r1.2 alltt.el
--- etc/alltt.el 18 Jan 2005 13:54:48 -0000 1.2
+++ etc/alltt.el 3 Feb 2007 14:46:12 -0000
@@ -3,7 +3,7 @@
;; Copyright (C) 2004 Free Software Foundation, Inc.
;; Author: Ralf Angeli <angeli(a)iwi.uni-sb.de>
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Created: 2004-04-30
;; Keywords: tex
Index: etc/alphanum.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/etc/alphanum.el,v
retrieving revision 1.1
diff -u -r1.1 alphanum.el
--- etc/alphanum.el 13 Sep 2004 15:34:18 -0000 1.1
+++ etc/alphanum.el 3 Feb 2007 14:46:12 -0000
@@ -3,7 +3,7 @@
;; Copyright (C) 2004 Free Software Foundation, Inc.
;; Author: Frank Küster <frank(a)kuesterei.ch>
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Keywords: tex
;; This file is part of AUCTeX.
Index: etc/amstex.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/etc/amstex.el,v
retrieving revision 1.3
diff -u -r1.3 amstex.el
--- etc/amstex.el 18 Jan 2005 13:54:48 -0000 1.3
+++ etc/amstex.el 3 Feb 2007 14:46:12 -0000
@@ -2,7 +2,7 @@
;; Copyright (C) 2004 Free Software Foundation, Inc.
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Keywords: tex
;; This file is part of AUCTeX.
Index: etc/csquotes.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/etc/csquotes.el,v
retrieving revision 1.1
diff -u -r1.1 csquotes.el
--- etc/csquotes.el 18 Jan 2005 13:54:48 -0000 1.1
+++ etc/csquotes.el 3 Feb 2007 14:46:12 -0000
@@ -3,7 +3,7 @@
;; Copyright (C) 2004 Free Software Foundation, Inc.
;; Author: Ralf Angeli <angeli(a)iwi.uni-sb.de>
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Created: 2004-11-29
;; Keywords: tex
Index: etc/doc.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/etc/doc.el,v
retrieving revision 1.2
diff -u -r1.2 doc.el
--- etc/doc.el 18 Jan 2005 13:54:48 -0000 1.2
+++ etc/doc.el 3 Feb 2007 14:46:12 -0000
@@ -3,7 +3,7 @@
;; Copyright (C) 2004 Free Software Foundation, Inc.
;; Author: Frank Küster <frank(a)kuesterei.ch>
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Keywords: tex
;; This file is part of AUCTeX.
Index: etc/emp.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/etc/emp.el,v
retrieving revision 1.1
diff -u -r1.1 emp.el
--- etc/emp.el 13 Sep 2004 15:34:18 -0000 1.1
+++ etc/emp.el 3 Feb 2007 14:46:12 -0000
@@ -3,7 +3,7 @@
;; Copyright (C) 2004 Free Software Foundation, Inc.
;; Author: Yvon Henel aka TeXnicien de surface <Yvon.Henel(a)wanadoo.fr>
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Keywords: tex
;; This file is free software; you can redistribute it and/or modify
Index: etc/jura.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/etc/jura.el,v
retrieving revision 1.1
diff -u -r1.1 jura.el
--- etc/jura.el 13 Sep 2004 15:34:19 -0000 1.1
+++ etc/jura.el 3 Feb 2007 14:46:12 -0000
@@ -3,7 +3,7 @@
;; Copyright (C) 2004 Free Software Foundation, Inc.
;; Author: Frank Küster <frank(a)kuesterei.ch>
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Keywords: tex
;; This file is part of AUCTeX.
Index: etc/jurabib.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/etc/jurabib.el,v
retrieving revision 1.1
diff -u -r1.1 jurabib.el
--- etc/jurabib.el 18 Jan 2005 13:54:49 -0000 1.1
+++ etc/jurabib.el 3 Feb 2007 14:46:12 -0000
@@ -3,7 +3,7 @@
;; Copyright (C) 2004 Free Software Foundation, Inc.
;; Author: Ralf Angeli <angeli(a)iwi.uni-sb.de>
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Created: 2004-10-05
;; Keywords: tex
Index: etc/listings.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/etc/listings.el,v
retrieving revision 1.1
diff -u -r1.1 listings.el
--- etc/listings.el 18 Jan 2005 13:54:50 -0000 1.1
+++ etc/listings.el 3 Feb 2007 14:46:12 -0000
@@ -3,7 +3,7 @@
;; Copyright (C) 2004 Free Software Foundation, Inc.
;; Author: Ralf Angeli <angeli(a)iwi.uni-sb.de>
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Created: 2004-10-17
;; Keywords: tex
Index: etc/ltx-base.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/etc/ltx-base.el,v
retrieving revision 1.1
diff -u -r1.1 ltx-base.el
--- etc/ltx-base.el 13 Sep 2004 15:34:19 -0000 1.1
+++ etc/ltx-base.el 3 Feb 2007 14:46:12 -0000
@@ -3,7 +3,7 @@
;; Copyright (C) 2004 Free Software Foundation, Inc.
;; Author: Frank Küster <frank(a)kuesterei.ch>
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Keywords: tex
;; This file is part of AUCTeX.
Index: etc/ltxdoc.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/etc/ltxdoc.el,v
retrieving revision 1.1
diff -u -r1.1 ltxdoc.el
--- etc/ltxdoc.el 13 Sep 2004 15:34:19 -0000 1.1
+++ etc/ltxdoc.el 3 Feb 2007 14:46:12 -0000
@@ -3,7 +3,7 @@
;; Copyright (C) 2004 Free Software Foundation, Inc.
;; Author: Frank Küster <frank(a)kuesterei.ch>
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Keywords: tex
;; This file is part of AUCTeX.
Index: etc/mdwlist.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/etc/mdwlist.el,v
retrieving revision 1.3
diff -u -r1.3 mdwlist.el
--- etc/mdwlist.el 18 Jan 2005 13:54:50 -0000 1.3
+++ etc/mdwlist.el 3 Feb 2007 14:46:12 -0000
@@ -2,7 +2,7 @@
;; Copyright (C) 2004 Free Software Foundation, Inc.
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Keywords: tex
;; This file is part of AUCTeX.
Index: etc/nicefrac.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/etc/nicefrac.el,v
retrieving revision 1.2
diff -u -r1.2 nicefrac.el
--- etc/nicefrac.el 18 Jan 2005 13:54:50 -0000 1.2
+++ etc/nicefrac.el 3 Feb 2007 14:46:12 -0000
@@ -3,7 +3,7 @@
;; Copyright (C) 2004 Free Software Foundation, Inc.
;; Author: Christian Schlauer <cschl(a)arcor.de>
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Keywords: tex
;; This file is part of AUCTeX.
Index: etc/slides.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/etc/slides.el,v
retrieving revision 1.6
diff -u -r1.6 slides.el
--- etc/slides.el 13 Sep 2004 15:34:20 -0000 1.6
+++ etc/slides.el 3 Feb 2007 14:46:12 -0000
@@ -3,7 +3,7 @@
;; Copyright (C) 2004 Free Software Foundation, Inc.
;; Author: Ralf Angeli <angeli(a)iwi.uni-sb.de>
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Created: 2004-04-21
;; Keywords: tex
Index: etc/units.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/etc/units.el,v
retrieving revision 1.2
diff -u -r1.2 units.el
--- etc/units.el 18 Jan 2005 13:54:51 -0000 1.2
+++ etc/units.el 3 Feb 2007 14:46:12 -0000
@@ -3,7 +3,7 @@
;; Copyright (C) 2004 Free Software Foundation, Inc.
;; Author: Christian Schlauer <cschl(a)arcor.de>
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Keywords: tex
;; This file is part of AUCTeX.
Index: etc/url.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/etc/url.el,v
retrieving revision 1.1
diff -u -r1.1 url.el
--- etc/url.el 18 Jan 2005 13:54:51 -0000 1.1
+++ etc/url.el 3 Feb 2007 14:46:12 -0000
@@ -3,7 +3,7 @@
;; Copyright (C) 2004 Free Software Foundation, Inc.
;; Author: Ralf Angeli <angeli(a)iwi.uni-sb.de>
-;; Maintainer: auc-tex(a)sunsite.dk
+;; Maintainer: auctex-devel(a)gnu.org
;; Created: 2004-10-13
;; Keywords: tex
Index: texi/intro.texi
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/auctex/texi/intro.texi,v
retrieving revision 1.6
diff -u -r1.6 intro.texi
--- texi/intro.texi 18 Jan 2005 13:54:55 -0000 1.6
+++ texi/intro.texi 3 Feb 2007 14:46:12 -0000
@@ -66,15 +66,27 @@
@section Contacts
-There has been established a mailing list for help, bug reports, feature
-requests and general discussion about @AUCTeX{}. You're very welcome
-to join. Traffic average at an article by day, but they come in bursts.
-If you are only interested in information on updates, you could refer to
-the newsgroups @samp{comp.text.tex} and @samp{gnu.emacs.sources}.
-
-If you want to contact the @AUCTeX{} mailing list, send mail to
-@email{auc-tex-subscribe@(a)sunsite.dk} in order to join. Articles should
-be sent to @email{auc-tex@(a)sunsite.dk}.
+Several channels have been established for help, bug reports, feature
+requests and general discussion about @AUCTeX{}. You're very welcome to
+join. If you are only interested in information on updates, you could
+refer to the newsgroups @samp{comp.text.tex} and @samp{gnu.emacs.sources}.
+
+Bug reports on AUCTeX may be sent to @email{bug-auctex@(a)gnu.org}. To join
+the list send mail to @email{bug-auctex-subscribe@(a)gnu.org}.
+
+The AUCTeX maintainers can be reached at @email{auctex-devel@(a)gnu.org}.
+Subscription requests should be sent to @email{auctex-devel-subscribe@(a)gnu.org}.
+
+@c XEmacs addition
+@subsection XEmacs and @AUCTeX{}
+
+Note that the XEmacs package version currently lags the upstream
+version substantionally. If you are missing features or there seems
+to be a bug in features related to editing documents, you are probably
+best advised to remove the XEmacs package and install the upstream
+version before contacting the AUCTeX maintainers.
+
+If you are having trouble installing the XEmacs package, or wish to
+help in updating the package version to the current upstream version,
+then @email{xemacs-beta@(a)xemacs.org} is the appropriate channel.
-To contact the current maintainers of @AUCTeX{} directly, email
-@email{auc-tex_mgr@(a)sunsite.dk}.
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-patches