/[emacs]/emacs/ChangeLog
ViewVC logotype

Log of /emacs/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


Links to HEAD: (view) (download) (annotate)
Sticky Tag:

Revision 1.876 - (view) (download) (annotate) - [select for diffs]
Thu Dec 17 04:12:40 2009 UTC (15 years, 10 months ago) by gm
Branch: MAIN
CVS Tags: HEAD
Changes since 1.875: +4 -0 lines
Diff to previous 1.875
(bug-reference-url-format): Change to debbugs.gnu.org.


Revision 1.875 - (view) (download) (annotate) - [select for diffs]
Tue Dec 15 03:03:26 2009 UTC (15 years, 10 months ago) by gm
Branch: MAIN
Changes since 1.874: +1 -0 lines
Diff to previous 1.874
Add EDT entry.


Revision 1.874 - (view) (download) (annotate) - [select for diffs]
Tue Dec 15 03:02:42 2009 UTC (15 years, 10 months ago) by gm
Branch: MAIN
Changes since 1.873: +4 -0 lines
Diff to previous 1.873
(INFO_FILES): Add edt.


Revision 1.260.2.123 - (view) (download) (annotate) - [select for diffs]
Fri Dec 11 11:07:48 2009 UTC (15 years, 10 months ago) by miles
Branch: lexbind
Changes since 1.260.2.122: +89 -3 lines
Diff to previous 1.260.2.122 , to branch point 1.260 , to next main 1.876
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-105


Revision 1.873 - (view) (download) (annotate) - [select for diffs]
Thu Dec 10 19:27:37 2009 UTC (15 years, 10 months ago) by jhd
Branch: MAIN
Changes since 1.872: +4 -0 lines
Diff to previous 1.872
configure.in: Check for RSVG if GNUStep is used.


Revision 1.872 - (view) (download) (annotate) - [select for diffs]
Wed Dec 9 18:46:53 2009 UTC (15 years, 10 months ago) by jhd
Branch: MAIN
Changes since 1.871: +4 -0 lines
Diff to previous 1.871
configure.in: Don't check for RSVG or GConf unless X11 is used.


Revision 1.871 - (view) (download) (annotate) - [select for diffs]
Wed Dec 9 01:06:32 2009 UTC (15 years, 10 months ago) by cyd
Branch: MAIN
CVS Tags: EMACS_PRETEST_23_1_90
Changes since 1.870: +4 -0 lines
Diff to previous 1.870
* configure.in: Allow compiling Emacs with GTK on Cygwin.

* src/s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.

* src/emacs.c (main): Set the G_SLICE environment variable for Cygwin
GTK builds.


Revision 1.870 - (view) (download) (annotate) - [select for diffs]
Tue Dec 1 17:06:30 2009 UTC (15 years, 10 months ago) by gm
Branch: MAIN
Changes since 1.869: +4 -0 lines
Diff to previous 1.869
Add etc/images/mpc directory.


Revision 1.869 - (view) (download) (annotate) - [select for diffs]
Sat Nov 21 15:40:24 2009 UTC (15 years, 11 months ago) by jhd
Branch: MAIN
Changes since 1.868: +4 -0 lines
Diff to previous 1.868
* cus-start.el (all): Add native condition for font-use-system-font.

* configure.in: Don't check for GConf unless X is used.


Revision 1.868 - (view) (download) (annotate) - [select for diffs]
Fri Nov 20 06:05:10 2009 UTC (15 years, 11 months ago) by dann
Branch: MAIN
Changes since 1.867: +4 -0 lines
Diff to previous 1.867
Use -Wdeclaration-after-statement if available.


Revision 1.867 - (view) (download) (annotate) - [select for diffs]
Tue Nov 17 08:21:23 2009 UTC (15 years, 11 months ago) by jhd
Branch: MAIN
Changes since 1.866: +5 -0 lines
Diff to previous 1.866
Handle system default font and changing font parameters.

* xterm.h (struct x_display_info): Add atoms and Window for xsettings.

* xterm.c (handle_one_xevent): Call xft_settings_event for
ClientMessage, PropertyNotify and DestroyNotify.
(x_term_init): If we have XFT, get DPI from Xft.dpi.
Call xsettings_initialize.

* xftfont.c (xftfont_fix_match): New function.
(xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
Call xftfont_fix_match after XftFontMatch.

* xfont.c (xfont_driver): Initialize all members.

* xfns.c (x_default_font_parameter): Try font from Ffont_get_system_font.
Do not get font from x_default_parameter if we got one from
Ffont_get_system_font.
(Fx_select_font): Get the defaut font name from :name of FRAME_FONT (f).

* w32font.c (w32font_driver): Initialize all members.

* termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.

* lisp.h: Declare syms_of_xsettings.

* keyboard.c (kbd_buffer_get_event, make_lispy_event): Handle
CONFIG_CHANGED_EVENT.

* ftfont.c (ftfont_filter_properties): New function.

* frame.c (x_set_font): Remove unused variable lval.

* font.h (struct font_driver): filter_properties is new.

* font.c (font_put_extra): Don't return if val is nil, it means
boolean option is off.
(font_parse_fcname): Collect all extra properties in extra_props
and call filter_properties for all drivers with extra_props and
font as parameter.
(font_open_entity): Do not use cache, it does not pick up new fontconfig
settings like hinting.
(font_load_for_lface): If spec had a name in it, store it in entity.

* emacs.c (main): Call syms_of_xsettings

* config.in: HAVE_GCONF is new.

* Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
xsettings.o is new.

* menu-bar.el: Put "Use system font" in Option-menu.

* loadup.el: If feature system-font-setting or font-render-setting is
there, load font-setting.

* Makefile.in (ELCFILES): font-settings.el is new.
* font-setting.el: New file.

* NEWS: Mention dynamic font changes (font-use-system-font).

* configure.in: New option: --with(out)-gconf.
Set HAVE_GCONF if we find gconf.


Revision 1.866 - (view) (download) (annotate) - [select for diffs]
Tue Nov 17 04:34:45 2009 UTC (15 years, 11 months ago) by gm
Branch: MAIN
Changes since 1.865: +4 -0 lines
Diff to previous 1.865
(INFO_FILES): Add semantic.


Revision 1.865 - (view) (download) (annotate) - [select for diffs]
Mon Nov 16 22:26:36 2009 UTC (15 years, 11 months ago) by cyd
Branch: MAIN
Changes since 1.864: +4 -0 lines
Diff to previous 1.864
* info/dir: Add Semantic.


Revision 1.864 - (view) (download) (annotate) - [select for diffs]
Mon Nov 16 02:06:36 2009 UTC (15 years, 11 months ago) by gm
Branch: MAIN
Changes since 1.863: +5 -0 lines
Diff to previous 1.863
(install-arch-indep): Use a more restrictive Makefile
pattern, so as not to exclude makefile*.el.  (Bug#4912)


Revision 1.863 - (view) (download) (annotate) - [select for diffs]
Sat Nov 14 15:17:38 2009 UTC (15 years, 11 months ago) by jhd
Branch: MAIN
Changes since 1.862: +6 -0 lines
Diff to previous 1.862
Use gcc-generated dependency files if we can (GNU Make and gcc required).

* Makefile.in: If AUTO_DEPEND is defined, make gcc generate
dependency files in deps/. Include those files into Makefile.

* config.in: Generated (AUTO_DEPEND).

* configure.in: --enable-autodepend is new.  Check for GNU Make
and that gcc supports -MMD -MF. Define AUTO_DEPEND if we can use
gcc and GNU make to generate dependencies.


Revision 1.862 - (view) (download) (annotate) - [select for diffs]
Tue Oct 27 02:48:13 2009 UTC (16 years ago) by gm
Branch: MAIN
Changes since 1.861: +4 -0 lines
Diff to previous 1.861
Make links to doc/lispintro/*.pdf.


Revision 1.861 - (view) (download) (annotate) - [select for diffs]
Fri Oct 23 16:19:37 2009 UTC (16 years ago) by cyd
Branch: MAIN
Changes since 1.860: +9 -0 lines
Diff to previous 1.860
* configure.in: Invoke $CPP with -P when creating Makefile and
src/Makefile.  Without this, gcc 4.4.2 converts each
backslash-newline pair in the input to a bare newline, yielding
invalid Makefiles.

* configure: Regenerate.


Revision 1.860 - (view) (download) (annotate) - [select for diffs]
Tue Oct 20 08:06:02 2009 UTC (16 years ago) by lektu
Branch: MAIN
Changes since 1.859: +4 -4 lines
Diff to previous 1.859
Fix typo.


Revision 1.859 - (view) (download) (annotate) - [select for diffs]
Mon Oct 19 22:48:52 2009 UTC (16 years ago) by dann
Branch: MAIN
Changes since 1.858: +4 -0 lines
Diff to previous 1.858
(vac-dec-vms): Remove, not supported anymore.


Revision 1.858 - (view) (download) (annotate) - [select for diffs]
Fri Oct 16 03:08:41 2009 UTC (16 years ago) by arobert
Branch: MAIN
Changes since 1.857: +5 -0 lines
Diff to previous 1.857
(NS_HAVE_NSINTEGER): Back out previous change.  (*-apple-darwin*): Add x86_64 architecture.


Revision 1.857 - (view) (download) (annotate) - [select for diffs]
Wed Oct 14 06:10:19 2009 UTC (16 years ago) by dann
Branch: MAIN
Changes since 1.856: +4 -0 lines
Diff to previous 1.856
* config.guess, config.sub: Updated from master source.


Revision 1.856 - (view) (download) (annotate) - [select for diffs]
Mon Oct 12 00:45:10 2009 UTC (16 years ago) by arobert
Branch: MAIN
Changes since 1.855: +4 -0 lines
Diff to previous 1.855
* configure.in (NS_HAVE_NSINTEGER): Remove this test and define.


Revision 1.855 - (view) (download) (annotate) - [select for diffs]
Wed Oct 7 18:26:40 2009 UTC (16 years ago) by lektu
Branch: MAIN
Changes since 1.854: +4 -0 lines
Diff to previous 1.854
* Makefile.in (INFO_FILES): Add EDE and EIEIO.


Revision 1.854 - (view) (download) (annotate) - [select for diffs]
Tue Sep 29 02:18:20 2009 UTC (16 years, 1 month ago) by gm
Branch: MAIN
Changes since 1.853: +4 -0 lines
Diff to previous 1.853
(check): Update for two new levels of subdirectory in lisp/.


Revision 1.260.2.122 - (view) (download) (annotate) - [select for diffs]
Fri Sep 18 08:02:37 2009 UTC (16 years, 1 month ago) by miles
Branch: lexbind
Changes since 1.260.2.121: +127 -0 lines
Diff to previous 1.260.2.121 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-103


Revision 1.853 - (view) (download) (annotate) - [select for diffs]
Thu Sep 17 06:14:33 2009 UTC (16 years, 1 month ago) by dann
Branch: MAIN
Changes since 1.852: +2 -0 lines
Diff to previous 1.852
Updated from master source.


Revision 1.852 - (view) (download) (annotate) - [select for diffs]
Thu Sep 17 06:10:44 2009 UTC (16 years, 1 month ago) by dann
Branch: MAIN
Changes since 1.851: +4 -0 lines
Diff to previous 1.851
* puresize.h (BASE_PURESIZE): Increase to 1290000.

* Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
(OBJECTS_MACHINE): Remove, unused.

* configure.in (OTHER_FILES): Define using autoconf not cpp.


Revision 1.851 - (view) (download) (annotate) - [select for diffs]
Mon Sep 14 23:24:56 2009 UTC (16 years, 1 month ago) by dann
Branch: MAIN
Changes since 1.850: +4 -0 lines
Diff to previous 1.850
(change-log-mode): Restore bug-reference-mode.


Revision 1.850 - (view) (download) (annotate) - [select for diffs]
Sun Sep 13 22:15:10 2009 UTC (16 years, 1 month ago) by cyd
Branch: MAIN
Changes since 1.849: +4 -0 lines
Diff to previous 1.849
* INSTALL: Update URL for GNU FreeFont.


Revision 1.849 - (view) (download) (annotate) - [select for diffs]
Wed Sep 9 02:34:17 2009 UTC (16 years, 1 month ago) by gm
Branch: MAIN
Changes since 1.848: +8 -0 lines
Diff to previous 1.848
(install-arch-indep): Don't recursively change perms of
site-lisp and infodir.  There may be non-Emacs files in here, and the
files supplied by Emacs are all handled explicitly already.  (Bug#3800)
(mkdir): Set umask to world-readable before creating directories.
mkinstalldirs already checks if dirs exist, don't duplicate this test.


Revision 1.848 - (view) (download) (annotate) - [select for diffs]
Sat Aug 29 02:18:03 2009 UTC (16 years, 2 months ago) by gm
Branch: MAIN
Changes since 1.847: +6 -0 lines
Diff to previous 1.847
(info-real): Don't ignore errors from doc Makefiles.
(info): Don't give an error in the absence of makeinfo - let the doc
Makefiles do that, if the info files need rebuilding.  (Bug#3982)


Revision 1.847 - (view) (download) (annotate) - [select for diffs]
Sun Aug 23 03:54:33 2009 UTC (16 years, 2 months ago) by raeburn
Branch: MAIN
Changes since 1.846: +5 -1 lines
Diff to previous 1.846
* Makefile.in (install-arch-indep): If the versioned DOC-####
generated during loadup+dump isn't found, install the plain DOC
file that always gets generated, in case CANNOT_DUMP is set.


Revision 1.846 - (view) (download) (annotate) - [select for diffs]
Sun Aug 23 02:15:02 2009 UTC (16 years, 2 months ago) by raeburn
Branch: MAIN
Changes since 1.845: +6 -0 lines
Diff to previous 1.845
* configure.in: Warn if package version specified here doesn't
match the version in version.el.
* configure: Regenerate.


Revision 1.845 - (view) (download) (annotate) - [select for diffs]
Sat Aug 22 08:49:36 2009 UTC (16 years, 2 months ago) by albinus
Branch: MAIN
Changes since 1.844: +6 -0 lines
Diff to previous 1.844
*** empty log message ***


Revision 1.844 - (view) (download) (annotate) - [select for diffs]
Wed Aug 19 02:52:17 2009 UTC (16 years, 2 months ago) by gm
Branch: MAIN
CVS Tags: CEDET_BASE
Branch point for: cedet-branch
Changes since 1.843: +4 -0 lines
Diff to previous 1.843
Remove reference to cvtmail.


Revision 1.843 - (view) (download) (annotate) - [select for diffs]
Sun Aug 16 03:16:33 2009 UTC (16 years, 2 months ago) by zenitani
Branch: MAIN
Changes since 1.842: +4 -0 lines
Diff to previous 1.842
* Makefile.in (install-arch-indep): Remove .DS_Store files (MacOSX).


Revision 1.842 - (view) (download) (annotate) - [select for diffs]
Sun Aug 2 22:49:24 2009 UTC (16 years, 2 months ago) by cyd
Branch: MAIN
Changes since 1.841: +4 -0 lines
Diff to previous 1.841
* INSTALL: Fix free fonts URL.


Revision 1.832.2.4 - (view) (download) (annotate) - [select for diffs]
Wed Jul 29 16:58:35 2009 UTC (16 years, 3 months ago) by cyd
Branch: EMACS_23_1_RC
CVS Tags: EMACS_23_1
Changes since 1.832.2.3: +4 -0 lines
Diff to previous 1.832.2.3 , to branch point 1.832 , to next main 1.876
Bump version to 23.1.


Revision 1.841 - (view) (download) (annotate) - [select for diffs]
Wed Jul 22 02:54:54 2009 UTC (16 years, 3 months ago) by gm
Branch: MAIN
Changes since 1.840: +4 -0 lines
Diff to previous 1.840
(AC_PREREQ): Require autoconf 2.62.


Revision 1.840 - (view) (download) (annotate) - [select for diffs]
Sat Jul 4 08:12:10 2009 UTC (16 years, 3 months ago) by schwab
Branch: MAIN
Changes since 1.839: +5 -0 lines
Diff to previous 1.839
(--enable-checking, --enable-profiling): Use
AS_HELP_STRING.


Revision 1.839 - (view) (download) (annotate) - [select for diffs]
Fri Jul 3 13:19:03 2009 UTC (16 years, 3 months ago) by dann
Branch: MAIN
Changes since 1.838: +2 -1 lines
Diff to previous 1.838
* m/mips.h: Mention this file is also used for netbsd.
* m/pmax.h: Remove file.

* configure.in (--enable-profiling): New option.
(mips-*-netbsd*, mipsel-*-netbsd*, mipseb-*-netbsd*): Use machine=mips.


Revision 1.838 - (view) (download) (annotate) - [select for diffs]
Fri Jul 3 13:04:57 2009 UTC (16 years, 3 months ago) by dann
Branch: MAIN
Changes since 1.837: +4 -0 lines
Diff to previous 1.837
(--enable-profiling): New option.


Revision 1.837 - (view) (download) (annotate) - [select for diffs]
Sat Jun 27 02:42:05 2009 UTC (16 years, 4 months ago) by gm
Branch: MAIN
Changes since 1.836: +4 -0 lines
Diff to previous 1.836
Restore netbsd on mips, mipsel, mipseb.


Revision 1.832.2.3 - (view) (download) (annotate) - [select for diffs]
Sat Jun 27 02:35:50 2009 UTC (16 years, 4 months ago) by gm
Branch: EMACS_23_1_RC
CVS Tags: EMACS_PRETEST_23_0_96
Changes since 1.832.2.2: +4 -0 lines
Diff to previous 1.832.2.2 , to branch point 1.832
Restore netbsd on mips, mipsel, mipseb.


Revision 1.836 - (view) (download) (annotate) - [select for diffs]
Fri Jun 26 23:41:43 2009 UTC (16 years, 4 months ago) by dann
Branch: MAIN
Changes since 1.835: +4 -0 lines
Diff to previous 1.835
(--enable-checking): New option.


Revision 1.832.2.2 - (view) (download) (annotate) - [select for diffs]
Wed Jun 24 03:52:10 2009 UTC (16 years, 4 months ago) by gm
Branch: EMACS_23_1_RC
Changes since 1.832.2.1: +7 -0 lines
Diff to previous 1.832.2.1 , to branch point 1.832
(nextstep/Cocoa/Emacs.base/Contents/Resources/preferences.nib)
(nextstep/GNUstep/Emacs.base/Resources/preferences.gorm):
No longer make links.


Revision 1.835 - (view) (download) (annotate) - [select for diffs]
Wed Jun 24 03:50:25 2009 UTC (16 years, 4 months ago) by gm
Branch: MAIN
Changes since 1.834: +9 -2 lines
Diff to previous 1.834
Warn if subdir does not exist in source.
(nextstep/Cocoa/Emacs.base/Contents/Resources/preferences.nib)
(nextstep/GNUstep/Emacs.base/Resources/preferences.gorm):
No longer make links.


Revision 1.834 - (view) (download) (annotate) - [select for diffs]
Wed Jun 24 03:47:07 2009 UTC (16 years, 4 months ago) by gm
Branch: MAIN
Changes since 1.833: +5 -0 lines
Diff to previous 1.833
Yavor Doganov  <yavor at gnu.org>

(tempdir): Don't create directories preferences.gorm and
preferences.nib, they are no longer required.


Revision 1.832.2.1 - (view) (download) (annotate) - [select for diffs]
Wed Jun 24 03:43:43 2009 UTC (16 years, 4 months ago) by gm
Branch: EMACS_23_1_RC
Changes since 1.832: +5 -0 lines
Diff to previous 1.832
Yavor Doganov  <yavor at gnu.org>

(tempdir): Don't create directories preferences.gorm and
preferences.nib, they are no longer required.


Revision 1.833 - (view) (download) (annotate) - [select for diffs]
Sun Jun 21 14:35:26 2009 UTC (16 years, 4 months ago) by cyd
Branch: MAIN
Changes since 1.832: +4 -0 lines
Diff to previous 1.832
Add "Branch for 23.1" ChangeLog entry.


Revision 1.832 - (view) (download) (annotate) - [select for diffs]
Sat Jun 13 00:01:31 2009 UTC (16 years, 4 months ago) by cyd
Branch: MAIN
CVS Tags: EMACS_23_1_BASE, EMACS_PRETEST_23_0_95
Branch point for: EMACS_23_1_RC
Changes since 1.831: +5 -0 lines
Diff to previous 1.831
* configure.in: Delete mac-fix-env target, which has been
removed (Bug#3531).


Revision 1.831 - (view) (download) (annotate) - [select for diffs]
Wed May 6 02:51:52 2009 UTC (16 years, 5 months ago) by monnier
Branch: MAIN
CVS Tags: EMACS_PRETEST_23_0_94
Changes since 1.830: +6 -2 lines
Diff to previous 1.830
Don't define CANNOT_DUMP for GNUStep any more.


Revision 1.830 - (view) (download) (annotate) - [select for diffs]
Tue May 5 01:23:41 2009 UTC (16 years, 5 months ago) by cyd
Branch: MAIN
Changes since 1.829: +4 -0 lines
Diff to previous 1.829
* BUGS: Use new binding of view-emacs-problems.


Revision 1.829 - (view) (download) (annotate) - [select for diffs]
Mon May 4 01:13:20 2009 UTC (16 years, 5 months ago) by cyd
Branch: MAIN
Changes since 1.828: +5 -0 lines
Diff to previous 1.828
* Makefile.in (install-arch-dep): Avoid using $$(..) construct,
for Solaris compatibility.
* leim/Makefile.in (install): Avoid using $$(..) construct, for Solaris
compatibility.


Revision 1.828 - (view) (download) (annotate) - [select for diffs]
Sat Apr 25 14:36:01 2009 UTC (16 years, 6 months ago) by cyd
Branch: MAIN
CVS Tags: EMACS_PRETEST_23_0_93
Changes since 1.827: +6 -0 lines
Diff to previous 1.827
* configure: Regenerate.
* configure.in: Disable use of FreeType without libXft.


Revision 1.827 - (view) (download) (annotate) - [select for diffs]
Sun Apr 19 10:53:15 2009 UTC (16 years, 6 months ago) by jhd
Branch: MAIN
Changes since 1.826: +5 -0 lines
Diff to previous 1.826
Make Emacs compile when Gtk+ and -DGTK_DISABLE_DEPRECATED is used.

* gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar): Use
G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
(xg_initialize): Use g_type_class_ref instead of gtk_type_class which
is deprecated.

* configure.in (HAVE_GTK_FILE_SELECTION, HAVE_GTK_FILE_CHOOSER): Check
if it is declared in gtk.h.


Revision 1.826 - (view) (download) (annotate) - [select for diffs]
Sun Apr 12 11:19:49 2009 UTC (16 years, 6 months ago) by schwab
Branch: MAIN
Changes since 1.825: +4 -0 lines
Diff to previous 1.825
(install-arch-indep): Remove .gitignore files.


Revision 1.260.2.121 - (view) (download) (annotate) - [select for diffs]
Fri Apr 10 07:09:15 2009 UTC (16 years, 6 months ago) by miles
Branch: lexbind
Changes since 1.260.2.120: +6 -0 lines
Diff to previous 1.260.2.120 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-102


Revision 1.825 - (view) (download) (annotate) - [select for diffs]
Fri Apr 3 01:57:12 2009 UTC (16 years, 6 months ago) by handa
Branch: MAIN
Changes since 1.824: +5 -0 lines
Diff to previous 1.824
*** empty log message ***


Revision 1.824 - (view) (download) (annotate) - [select for diffs]
Wed Mar 11 03:20:35 2009 UTC (16 years, 7 months ago) by gm
Branch: MAIN
CVS Tags: EMACS_PRETEST_23_0_92
Changes since 1.823: +1 -0 lines
Diff to previous 1.823
Add missing entry.


Revision 1.260.2.120 - (view) (download) (annotate) - [select for diffs]
Mon Mar 9 05:52:47 2009 UTC (16 years, 7 months ago) by miles
Branch: lexbind
Changes since 1.260.2.119: +39 -2 lines
Diff to previous 1.260.2.119 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-101


Revision 1.823 - (view) (download) (annotate) - [select for diffs]
Fri Mar 6 08:09:13 2009 UTC (16 years, 7 months ago) by dann
Branch: MAIN
CVS Tags: lexbind-base
Changes since 1.822: +4 -0 lines
Diff to previous 1.822
(rs6000-ibm-aix6*): Fix typo.


Revision 1.822 - (view) (download) (annotate) - [select for diffs]
Wed Mar 4 05:42:07 2009 UTC (16 years, 7 months ago) by gm
Branch: MAIN
Changes since 1.821: +4 -0 lines
Diff to previous 1.821
(INFO_FILES): Add auth.


Revision 1.821 - (view) (download) (annotate) - [select for diffs]
Tue Mar 3 04:22:58 2009 UTC (16 years, 7 months ago) by gm
Branch: MAIN
Changes since 1.820: +4 -0 lines
Diff to previous 1.820
Add auth-source.


Revision 1.820 - (view) (download) (annotate) - [select for diffs]
Sat Feb 28 23:07:42 2009 UTC (16 years, 8 months ago) by monnier
Branch: MAIN
Changes since 1.819: +5 -0 lines
Diff to previous 1.819
(src): Fix last change so the first `cd' doesn't affect the second.


Revision 1.819 - (view) (download) (annotate) - [select for diffs]
Sat Feb 28 14:04:58 2009 UTC (16 years, 8 months ago) by eliz
Branch: MAIN
Changes since 1.818: +2 -0 lines
Diff to previous 1.818
*** empty log message ***


Revision 1.818 - (view) (download) (annotate) - [select for diffs]
Sat Feb 28 13:23:20 2009 UTC (16 years, 8 months ago) by eliz
Branch: MAIN
Changes since 1.817: +4 -0 lines
Diff to previous 1.817
*** empty log message ***


Revision 1.817 - (view) (download) (annotate) - [select for diffs]
Sat Feb 28 04:44:50 2009 UTC (16 years, 8 months ago) by monnier
Branch: MAIN
Changes since 1.816: +6 -0 lines
Diff to previous 1.816
(lib-src, lisp): Use simpler rule.
(src): Be more specific to avoid recompiling all the .elc files just
because the bootstrap-emacs is missing.


Revision 1.816 - (view) (download) (annotate) - [select for diffs]
Thu Feb 26 22:58:00 2009 UTC (16 years, 8 months ago) by cyd
Branch: MAIN
Changes since 1.815: +4 -0 lines
Diff to previous 1.815
* configure.in: Require librsvg >= 2.11.


Revision 1.815 - (view) (download) (annotate) - [select for diffs]
Thu Feb 26 21:23:17 2009 UTC (16 years, 8 months ago) by arobert
Branch: MAIN
Changes since 1.814: +5 -0 lines
Diff to previous 1.814
	* configure.in (HAVE_XFT, HAVE_FREETYPE, HAVE_LIBOTF)
	(HAVE_M17N_FLT): Don't check for these unless HAVE_X11.


Revision 1.814 - (view) (download) (annotate) - [select for diffs]
Wed Feb 25 17:32:28 2009 UTC (16 years, 8 months ago) by gm
Branch: MAIN
CVS Tags: EMACS_PRETEST_23_0_91
Changes since 1.813: +0 -1 lines
Diff to previous 1.813
Remove local setting of bug-reference-url-format since it's in dir-locals now.


Revision 1.813 - (view) (download) (annotate) - [select for diffs]
Wed Feb 11 08:44:18 2009 UTC (16 years, 8 months ago) by lektu
Branch: MAIN
Changes since 1.812: +1 -1 lines
Diff to previous 1.812
Fix typos and add bug references.


Revision 1.260.2.119 - (view) (download) (annotate) - [select for diffs]
Thu Feb 5 09:12:31 2009 UTC (16 years, 8 months ago) by miles
Branch: lexbind
Changes since 1.260.2.118: +21 -0 lines
Diff to previous 1.260.2.118 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-100


Revision 1.812 - (view) (download) (annotate) - [select for diffs]
Wed Feb 4 11:33:33 2009 UTC (16 years, 8 months ago) by arobert
Branch: MAIN
Changes since 1.811: +4 -0 lines
Diff to previous 1.811
* configure.in (COCOA_EXPERIMENTAL_CTRL_G): Drop.


Revision 1.811 - (view) (download) (annotate) - [select for diffs]
Tue Feb 3 04:03:41 2009 UTC (16 years, 8 months ago) by gm
Branch: MAIN
Changes since 1.810: +5 -0 lines
Diff to previous 1.810
Add some missing files, remove some that are no longer present.


Revision 1.810 - (view) (download) (annotate) - [select for diffs]
Mon Feb 2 07:59:55 2009 UTC (16 years, 8 months ago) by gm
Branch: MAIN
Changes since 1.809: +4 -0 lines
Diff to previous 1.809
Add some missing nextstep/ files.


Revision 1.809 - (view) (download) (annotate) - [select for diffs]
Thu Jan 22 13:15:32 2009 UTC (16 years, 9 months ago) by arobert
Branch: MAIN
CVS Tags: EMACS_PRETEST_23_0_90
Changes since 1.808: +4 -0 lines
Diff to previous 1.808
* configure.in (HAVE_RSVG): Use librsvg under HAVE_NS also. (Bug#616)


Revision 1.260.2.118 - (view) (download) (annotate) - [select for diffs]
Thu Jan 22 08:02:15 2009 UTC (16 years, 9 months ago) by miles
Branch: lexbind
Changes since 1.260.2.117: +42 -1 lines
Diff to previous 1.260.2.117 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-99


Revision 1.808 - (view) (download) (annotate) - [select for diffs]
Thu Jan 22 06:38:56 2009 UTC (16 years, 9 months ago) by dann
Branch: MAIN
Changes since 1.807: +4 -0 lines
Diff to previous 1.807
Add support for m68k-*-netbsd.


Revision 1.807 - (view) (download) (annotate) - [select for diffs]
Wed Jan 14 23:16:35 2009 UTC (16 years, 9 months ago) by jurta
Branch: MAIN
Changes since 1.806: +2 -0 lines
Diff to previous 1.806
*** empty log message ***


Revision 1.806 - (view) (download) (annotate) - [select for diffs]
Wed Jan 14 00:37:28 2009 UTC (16 years, 9 months ago) by jurta
Branch: MAIN
Changes since 1.805: +5 -0 lines
Diff to previous 1.805
*** empty log message ***


Revision 1.805 - (view) (download) (annotate) - [select for diffs]
Sun Jan 11 23:07:18 2009 UTC (16 years, 9 months ago) by jurta
Branch: MAIN
Changes since 1.804: +4 -0 lines
Diff to previous 1.804
*** empty log message ***


Revision 1.804 - (view) (download) (annotate) - [select for diffs]
Fri Jan 9 05:05:29 2009 UTC (16 years, 9 months ago) by gm
Branch: MAIN
Changes since 1.803: +4 -0 lines
Diff to previous 1.803
Don't set indent-tabs-mode.


Revision 1.803 - (view) (download) (annotate) - [select for diffs]
Thu Jan 8 03:47:42 2009 UTC (16 years, 9 months ago) by gm
Branch: MAIN
Changes since 1.802: +1 -1 lines
Diff to previous 1.802
Add 2009 to copyright years.


Revision 1.802 - (view) (download) (annotate) - [select for diffs]
Sun Jan 4 13:09:35 2009 UTC (16 years, 9 months ago) by handa
Branch: MAIN
Changes since 1.801: +5 -0 lines
Diff to previous 1.801
*** empty log message ***


Revision 1.801 - (view) (download) (annotate) - [select for diffs]
Tue Dec 30 20:13:18 2008 UTC (16 years, 9 months ago) by jhd
Branch: MAIN
Changes since 1.800: +5 -0 lines
Diff to previous 1.800
*** empty log message ***


Revision 1.800 - (view) (download) (annotate) - [select for diffs]
Sat Dec 27 17:10:24 2008 UTC (16 years, 10 months ago) by dann
Branch: MAIN
Changes since 1.799: +6 -0 lines
Diff to previous 1.799
Remove non-working entry for pmail.
(fill-column): Fix typo.
(change-log-mode): Add fill column.


Revision 1.799 - (view) (download) (annotate) - [select for diffs]
Fri Dec 26 15:03:47 2008 UTC (16 years, 10 months ago) by eliz
Branch: MAIN
Changes since 1.798: +4 -0 lines
Diff to previous 1.798
*** empty log message ***


Revision 1.798 - (view) (download) (annotate) - [select for diffs]
Wed Dec 24 00:45:51 2008 UTC (16 years, 10 months ago) by dann
Branch: MAIN
Changes since 1.797: +6 -0 lines
Diff to previous 1.797
* make-dist (tempdir): Distribute .dir-locals.el.

* .dir-locals.el: New file.


Revision 1.260.2.117 - (view) (download) (annotate) - [select for diffs]
Mon Dec 22 09:21:36 2008 UTC (16 years, 10 months ago) by miles
Branch: lexbind
Changes since 1.260.2.116: +77 -11 lines
Diff to previous 1.260.2.116 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-98


Revision 1.260.2.116 - (view) (download) (annotate) - [select for diffs]
Mon Dec 22 09:14:39 2008 UTC (16 years, 10 months ago) by miles
Branch: lexbind
Changes since 1.260.2.115: +43 -0 lines
Diff to previous 1.260.2.115 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-97


Revision 1.797 - (view) (download) (annotate) - [select for diffs]
Fri Dec 19 11:05:49 2008 UTC (16 years, 10 months ago) by eliz
Branch: MAIN
Changes since 1.796: +5 -0 lines
Diff to previous 1.796
*** empty log message ***


Revision 1.796 - (view) (download) (annotate) - [select for diffs]
Fri Dec 19 03:14:17 2008 UTC (16 years, 10 months ago) by gm
Branch: MAIN
Changes since 1.795: +1 -1 lines
Diff to previous 1.795
Formatting fix, for AUTHORS.


Revision 1.795 - (view) (download) (annotate) - [select for diffs]
Fri Dec 19 01:50:43 2008 UTC (16 years, 10 months ago) by lektu
Branch: MAIN
Changes since 1.794: +8 -8 lines
Diff to previous 1.794
Fix typos and author's names.


Revision 1.794 - (view) (download) (annotate) - [select for diffs]
Sat Dec 13 20:32:30 2008 UTC (16 years, 10 months ago) by gm
Branch: MAIN
Changes since 1.793: +1 -0 lines
Diff to previous 1.793
(uninstall): Remove desktop file and icons, game scores if empty.


Revision 1.793 - (view) (download) (annotate) - [select for diffs]
Sat Dec 13 20:12:08 2008 UTC (16 years, 10 months ago) by gm
Branch: MAIN
Changes since 1.792: +4 -0 lines
Diff to previous 1.792
(manext): Remove variable.
(MAN_PAGES): New variable.
(install-arch-indep, uninstall): Use MAN_PAGES for list of files to add
and remove.


Revision 1.792 - (view) (download) (annotate) - [select for diffs]
Sat Dec 13 04:19:34 2008 UTC (16 years, 10 months ago) by gm
Branch: MAIN
Changes since 1.791: +4 -0 lines
Diff to previous 1.791
(install-arch-indep): Add new man-pages.


Revision 1.791 - (view) (download) (annotate) - [select for diffs]
Thu Dec 11 18:17:17 2008 UTC (16 years, 10 months ago) by dann
Branch: MAIN
Changes since 1.790: +4 -0 lines
Diff to previous 1.790
Updated from master source.


Revision 1.790 - (view) (download) (annotate) - [select for diffs]
Wed Dec 10 08:30:54 2008 UTC (16 years, 10 months ago) by dann
Branch: MAIN
Changes since 1.789: +4 -0 lines
Diff to previous 1.789
* Makefile.in (install-arch-indep): Install ebrowse.1.

* ebrowse.1: New file, mostly just the results of --help in man format.


Revision 1.789 - (view) (download) (annotate) - [select for diffs]
Tue Dec 9 20:36:25 2008 UTC (16 years, 10 months ago) by dann
Branch: MAIN
Changes since 1.788: +4 -0 lines
Diff to previous 1.788
Add Solaris on x86_64.


Revision 1.788 - (view) (download) (annotate) - [select for diffs]
Tue Dec 9 00:58:34 2008 UTC (16 years, 10 months ago) by dann
Branch: MAIN
Changes since 1.787: +4 -0 lines
Diff to previous 1.787
Updated from master source.


Revision 1.787 - (view) (download) (annotate) - [select for diffs]
Mon Dec 8 23:42:13 2008 UTC (16 years, 10 months ago) by eliz
Branch: MAIN
Changes since 1.786: +4 -0 lines
Diff to previous 1.786
*** empty log message ***


Revision 1.786 - (view) (download) (annotate) - [select for diffs]
Sun Dec 7 17:41:12 2008 UTC (16 years, 10 months ago) by eliz
Branch: MAIN
Changes since 1.785: +4 -0 lines
Diff to previous 1.785
*** empty log message ***


Revision 1.785 - (view) (download) (annotate) - [select for diffs]
Tue Dec 2 16:40:31 2008 UTC (16 years, 10 months ago) by lektu
Branch: MAIN
Changes since 1.784: +2 -2 lines
Diff to previous 1.784
Fix typos.


Revision 1.784 - (view) (download) (annotate) - [select for diffs]
Fri Nov 28 22:39:06 2008 UTC (16 years, 11 months ago) by rfrancoise
Branch: MAIN
Changes since 1.783: +4 -0 lines
Diff to previous 1.783
2008-11-28  Ulrich Mueller  <ulm@gentoo.org>

	* configure.in: Fix last change.


Revision 1.783 - (view) (download) (annotate) - [select for diffs]
Fri Nov 28 15:39:58 2008 UTC (16 years, 11 months ago) by rms
Branch: MAIN
Changes since 1.782: +5 -0 lines
Diff to previous 1.782
*** empty log message ***


Revision 1.782 - (view) (download) (annotate) - [select for diffs]
Thu Nov 20 02:51:58 2008 UTC (16 years, 11 months ago) by gm
Branch: MAIN
Changes since 1.781: +5 -0 lines
Diff to previous 1.781
*** empty log message ***


Revision 1.781 - (view) (download) (annotate) - [select for diffs]
Sat Nov 15 10:36:18 2008 UTC (16 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.780: +2 -0 lines
Diff to previous 1.780
*** empty log message ***


Revision 1.780 - (view) (download) (annotate) - [select for diffs]
Sat Nov 15 09:52:43 2008 UTC (16 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.779: +4 -0 lines
Diff to previous 1.779
*** empty log message ***


Revision 1.779 - (view) (download) (annotate) - [select for diffs]
Sat Nov 8 19:07:31 2008 UTC (16 years, 11 months ago) by eliz
Branch: MAIN
CVS Tags: small-dump-base
Changes since 1.778: +4 -0 lines
Diff to previous 1.778
*** empty log message ***


Revision 1.778 - (view) (download) (annotate) - [select for diffs]
Fri Nov 7 06:56:47 2008 UTC (16 years, 11 months ago) by gm
Branch: MAIN
Changes since 1.777: +4 -0 lines
Diff to previous 1.777
*** empty log message ***


Revision 1.777 - (view) (download) (annotate) - [select for diffs]
Fri Oct 31 10:56:30 2008 UTC (16 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.776: +5 -0 lines
Diff to previous 1.776
*** empty log message ***


Revision 1.776 - (view) (download) (annotate) - [select for diffs]
Thu Oct 30 18:58:38 2008 UTC (16 years, 11 months ago) by cyd
Branch: MAIN
Changes since 1.775: +4 -0 lines
Diff to previous 1.775
* update-subdirs: Put obsolete directory last.


Revision 1.775 - (view) (download) (annotate) - [select for diffs]
Thu Oct 30 07:11:41 2008 UTC (17 years ago) by handa
Branch: MAIN
Changes since 1.774: +4 -0 lines
Diff to previous 1.774
*** empty log message ***


Revision 1.774 - (view) (download) (annotate) - [select for diffs]
Thu Oct 30 02:27:28 2008 UTC (17 years ago) by dann
Branch: MAIN
Changes since 1.773: +4 -0 lines
Diff to previous 1.773
(*-solaris2.[7-9]*): Fix typo.


Revision 1.773 - (view) (download) (annotate) - [select for diffs]
Fri Oct 24 07:22:43 2008 UTC (17 years ago) by gm
Branch: MAIN
Changes since 1.772: +7 -0 lines
Diff to previous 1.772
*** empty log message ***


Revision 1.772 - (view) (download) (annotate) - [select for diffs]
Fri Oct 24 04:26:53 2008 UTC (17 years ago) by gm
Branch: MAIN
Changes since 1.771: +6 -0 lines
Diff to previous 1.771
*** empty log message ***


Revision 1.771 - (view) (download) (annotate) - [select for diffs]
Thu Oct 23 19:32:19 2008 UTC (17 years ago) by dann
Branch: MAIN
Changes since 1.770: +5 -0 lines
Diff to previous 1.770
* configure (*-sunos5*, *-solaris* ): Use the new file sol2-10.h.
Use sol2-6.h for Solaris 7-9.
* s/sol2-10.h: New file.


Revision 1.770 - (view) (download) (annotate) - [select for diffs]
Sat Oct 18 08:11:30 2008 UTC (17 years ago) by dann
Branch: MAIN
Changes since 1.769: +4 -0 lines
Diff to previous 1.769
* configure.in: Add support for GNU/Linux on SuperH.
* MACHINES: Add section for SuperH.
* m/sh3.h: New file, machine description for SuperH.


Revision 1.769 - (view) (download) (annotate) - [select for diffs]
Sun Oct 12 12:47:22 2008 UTC (17 years ago) by schwab
Branch: MAIN
Changes since 1.768: +4 -0 lines
Diff to previous 1.768
Only check for m17n-flt if HAVE_LIBOTF.


Revision 1.260.2.115 - (view) (download) (annotate) - [select for diffs]
Tue Oct 7 04:44:31 2008 UTC (17 years ago) by miles
Branch: lexbind
Changes since 1.260.2.114: +17 -6 lines
Diff to previous 1.260.2.114 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-96


Revision 1.768 - (view) (download) (annotate) - [select for diffs]
Fri Oct 3 18:43:30 2008 UTC (17 years ago) by arobert
Branch: MAIN
Changes since 1.767: +7 -0 lines
Diff to previous 1.767
configure.in: Report USE_TOOLKIT_SCROLLBARS as such (not mentioning 'X') to avoid confusion


Revision 1.767 - (view) (download) (annotate) - [select for diffs]
Wed Sep 24 01:16:16 2008 UTC (17 years, 1 month ago) by lektu
Branch: MAIN
Changes since 1.766: +6 -6 lines
Diff to previous 1.766
Fix typos.


Revision 1.766 - (view) (download) (annotate) - [select for diffs]
Sun Sep 7 11:45:46 2008 UTC (17 years, 1 month ago) by rfrancoise
Branch: MAIN
Changes since 1.765: +4 -0 lines
Diff to previous 1.765
Distribute doc/man/ChangeLog.


Revision 1.553.2.27 - (view) (download) (annotate) - [select for diffs]
Fri Sep 5 16:23:46 2008 UTC (17 years, 1 month ago) by cyd
Branch: EMACS_22_BASE
CVS Tags: EMACS_22_3
Changes since 1.553.2.26: +4 -0 lines
Diff to previous 1.553.2.26 , to branch point 1.553 , to next main 1.876
Version 22.3 released.


Revision 1.260.2.114 - (view) (download) (annotate) - [select for diffs]
Thu Sep 4 05:44:58 2008 UTC (17 years, 1 month ago) by miles
Branch: lexbind
Changes since 1.260.2.113: +115 -6 lines
Diff to previous 1.260.2.113 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-95


Revision 1.765 - (view) (download) (annotate) - [select for diffs]
Thu Aug 28 20:31:19 2008 UTC (17 years, 2 months ago) by cyd
Branch: MAIN
Changes since 1.764: +6 -0 lines
Diff to previous 1.764
* configure.in: Disable XFT and Freetype when without X.
* configure: Regenerate.


Revision 1.764 - (view) (download) (annotate) - [select for diffs]
Sun Aug 24 17:46:17 2008 UTC (17 years, 2 months ago) by dann
Branch: MAIN
Changes since 1.763: +4 -0 lines
Diff to previous 1.763
(NS_IMPL_GNUSTEP): Increase pure size.


Revision 1.763 - (view) (download) (annotate) - [select for diffs]
Thu Aug 21 14:50:57 2008 UTC (17 years, 2 months ago) by cyd
Branch: MAIN
Changes since 1.762: +7 -0 lines
Diff to previous 1.762
* configure.in (GNUSTEP_SYSTEM_HEADERS): Define
GNUSTEP_SYSTEM_HEADERS and GNUSTEP_SYSTEM_LIBRARIES.

* configure: Regenerate.


Revision 1.762 - (view) (download) (annotate) - [select for diffs]
Wed Aug 20 10:59:00 2008 UTC (17 years, 2 months ago) by eliz
Branch: MAIN
Changes since 1.761: +5 -0 lines
Diff to previous 1.761
*** empty log message ***


Revision 1.761 - (view) (download) (annotate) - [select for diffs]
Tue Aug 19 02:26:02 2008 UTC (17 years, 2 months ago) by handa
Branch: MAIN
Changes since 1.760: +5 -0 lines
Diff to previous 1.760
*** empty log message ***


Revision 1.760 - (view) (download) (annotate) - [select for diffs]
Mon Aug 18 05:33:29 2008 UTC (17 years, 2 months ago) by miles
Branch: MAIN
Changes since 1.759: +8 -0 lines
Diff to previous 1.759
Merge from emacs--rel--22

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1382


Revision 1.553.2.26 - (view) (download) (annotate) - [select for diffs]
Sat Aug 16 13:45:53 2008 UTC (17 years, 2 months ago) by cyd
Branch: EMACS_22_BASE
CVS Tags: EMACS_PRETEST_22_2_91, EMACS_PRETEST_22_2_92
Changes since 1.553.2.25: +4 -0 lines
Diff to previous 1.553.2.25 , to branch point 1.553
* make-dist: Omit info/.arch-inventory.


Revision 1.553.2.25 - (view) (download) (annotate) - [select for diffs]
Sat Aug 16 04:18:47 2008 UTC (17 years, 2 months ago) by jasonr
Branch: EMACS_22_BASE
Changes since 1.553.2.24: +4 -0 lines
Diff to previous 1.553.2.24 , to branch point 1.553
(tempdir/nt): Link emacsclient.rc.


Revision 1.553.2.24 - (view) (download) (annotate) - [select for diffs]
Sun Aug 10 20:12:43 2008 UTC (17 years, 2 months ago) by gm
Branch: EMACS_22_BASE
CVS Tags: EMACS_PRETEST_22_2_90
Changes since 1.553.2.23: +6 -0 lines
Diff to previous 1.553.2.23 , to branch point 1.553
Forgot to commit this.


Revision 1.759 - (view) (download) (annotate) - [select for diffs]
Sun Aug 10 00:23:50 2008 UTC (17 years, 2 months ago) by gm
Branch: MAIN
Changes since 1.758: +0 -10 lines
Diff to previous 1.758
Prune some instances of "regenerate", in line with the documented
policy that ChangeLog entries are not needed for such events.


Revision 1.758 - (view) (download) (annotate) - [select for diffs]
Sun Aug 10 00:22:13 2008 UTC (17 years, 2 months ago) by gm
Branch: MAIN
Changes since 1.757: +3 -5 lines
Diff to previous 1.757
Fix attribution.


Revision 1.757 - (view) (download) (annotate) - [select for diffs]
Thu Aug 7 14:21:36 2008 UTC (17 years, 2 months ago) by dann
Branch: MAIN
Changes since 1.756: +10 -0 lines
Diff to previous 1.756
* s/darwin.h (OTHER_FILES): Do not define here, defined in
config.in.

* Makefile.in (ALL_OBJC_CFLAGS): New variable.
(.m.o): Use it.
* config.in: Regenerate.

* Makefile.in (INSTALLABLES): Add LIB_SRC_EXTRA_INSTALLABLES.  Do
not special case for NS_IMPL_COCOA.

* configure.in (LIB_SRC_EXTRA_INSTALLABLES): New variable.
AC_SUBST it.
(GNU_OBJC_CFLAGS): Define as a shell variable instead of #define.
AC_SUBST it.
(OTHER_FILES): Always define for HAVE_NS.
(C_SWITCH_X_SYSTEM): Don't define as empty for NS_IMPL_COCOA.
* configure: Regenerate.


Revision 1.756 - (view) (download) (annotate) - [select for diffs]
Thu Aug 7 08:54:09 2008 UTC (17 years, 2 months ago) by schwab
Branch: MAIN
Changes since 1.755: +7 -0 lines
Diff to previous 1.755
* configure.in: Correctly handle
--enable-cocoa-experimental-ctrl-g=no and
--enable-ns-self-contained=yes.
* configure: Regenerate.


Revision 1.755 - (view) (download) (annotate) - [select for diffs]
Thu Aug 7 01:33:34 2008 UTC (17 years, 2 months ago) by arobert
Branch: MAIN
Changes since 1.754: +2 -1 lines
Diff to previous 1.754
* configure.in (C_SWITCH_X_SYSTEM): drop the undef under NS


Revision 1.754 - (view) (download) (annotate) - [select for diffs]
Wed Aug 6 16:19:43 2008 UTC (17 years, 2 months ago) by arobert
Branch: MAIN
Changes since 1.753: +7 -0 lines
Diff to previous 1.753
* configure.in (NS_HAVE_INTEGER): Rename to NS_HAVE_NSINTEGER.  (C_SWITCH_X_SYSTEM): Drop -MMD -MP under NS_IMPL_GNUstep.* configure: Regenerate.


Revision 1.753 - (view) (download) (annotate) - [select for diffs]
Wed Aug 6 09:29:16 2008 UTC (17 years, 2 months ago) by schwab
Branch: MAIN
Changes since 1.752: +4 -0 lines
Diff to previous 1.752
Fix quoting.


Revision 1.752 - (view) (download) (annotate) - [select for diffs]
Wed Aug 6 05:26:53 2008 UTC (17 years, 2 months ago) by cyd
Branch: MAIN
Changes since 1.751: +6 -0 lines
Diff to previous 1.751
* configure.in (COCOA_EXPERIMENTAL_CTRL_G): Fix 2008-08-04 change.

* configure: Regenerate.


Revision 1.751 - (view) (download) (annotate) - [select for diffs]
Tue Aug 5 23:43:40 2008 UTC (17 years, 2 months ago) by cyd
Branch: MAIN
Changes since 1.750: +7 -0 lines
Diff to previous 1.750
* configure.in: Add checks for krb5_error.text and
krb5_error.e_text struct members.
* configure: Regenerate.


Revision 1.553.2.23 - (view) (download) (annotate) - [select for diffs]
Tue Aug 5 18:05:35 2008 UTC (17 years, 2 months ago) by cyd
Branch: EMACS_22_BASE
Changes since 1.553.2.22: +7 -0 lines
Diff to previous 1.553.2.22 , to branch point 1.553
* configure.in: Add checks for krb5_error.text and
krb5_error.e_text struct members.
* configure: Regenerate.


Revision 1.750 - (view) (download) (annotate) - [select for diffs]
Mon Aug 4 21:56:53 2008 UTC (17 years, 2 months ago) by cyd
Branch: MAIN
Changes since 1.749: +1 -0 lines
Diff to previous 1.749
Last change suggested by Yavor Doganov.


Revision 1.749 - (view) (download) (annotate) - [select for diffs]
Mon Aug 4 21:56:18 2008 UTC (17 years, 2 months ago) by cyd
Branch: MAIN
Changes since 1.748: +6 -0 lines
Diff to previous 1.748
* configure: Regenerate.
* configure.in: Test for existence of NSInteger.


Revision 1.748 - (view) (download) (annotate) - [select for diffs]
Sat Aug 2 14:11:23 2008 UTC (17 years, 2 months ago) by rfrancoise
Branch: MAIN
Changes since 1.747: +4 -0 lines
Diff to previous 1.747
(INFO_FILES): Add mairix-el.


Revision 1.747 - (view) (download) (annotate) - [select for diffs]
Thu Jul 31 05:33:34 2008 UTC (17 years, 3 months ago) by dann
Branch: MAIN
CVS Tags: remove-vms
Changes since 1.746: +6 -0 lines
Diff to previous 1.746
* bitmaps/README:
* xfns.c:
* termcap.c:
* term.c:
* syswait.h:
* systty.h:
* systime.h:
* syssignal.h:
* sysdep.c:
* process.h:
* process.c:
* print.c:
* ndir.h:
* lread.c:
* keyboard.c:
* getpagesize.h:
* floatfns.c:
* fileio.c:
* emacs.c:
* doc.c:
* dispnew.c:
* dired.c:
* data.c:
* callproc.c:
* buffer.c:
* README:
* Makefile.in:
* s/template.h:
* s/msdos.h:
* m/vax.h: Remove VMS support.
* s/vms.h:
* vlimit.h:
* uaf.h:
* temacs.opt:
* param.h:
* ioctl.h: Remove file.

* descrip.mms:
* compile.com: Remove file.
* Create.c: Remove VMS support.

* message.el (Module):

* gnus-start.el (Module):

* gnus-registry.el (Module):

* textmodes/texinfmt.el:
* nxml/nxml-enc.el:
* mail/feedmail.el:
* international/mule.el:
* international/latexenc.el:
* emulation/viper-util.el:
* emulation/viper-init.el:
* emulation/viper-ex.el:
* emacs-lisp/bytecomp.el:
* version.el:
* subr.el:
* startup.el:
* sort.el:
* shadowfile.el:
* recentf.el:
* printing.el:
* paths.el:
* minibuffer.el:
* ls-lisp.el:
* loadup.el:
* hippie-exp.el:
* finder.el:
* files.el:
* ediff-util.el:
* ediff-ptch.el:
* ediff-init.el:
* ediff-diff.el:
* dired.el:
* dired-aux.el:
* cus-edit.el:
* bindings.el:
* arc-mode.el:
* add-log.el: Remove VMS support.
* obsolete/vmsproc.el:
* obsolete/vms-pmail.el:
* obsolete/vms-patch.el: Remove file.

* etags.c:
* emacsclient.c: Remove VMS support.

* termcap.src: Remove file.
* README:
* PROBLEMS:
* MACHINES: Remove VMS info.

* ediff.texi: Remove VMS support.

* os.texi:
* intro.texi:
* files.texi: Remove VMS support.

* emacs.texi: Remove VMS support.

* make-dist:
* README: Remove VMS support.
* vms: Remove directory.


Revision 1.746 - (view) (download) (annotate) - [select for diffs]
Thu Jul 31 02:47:23 2008 UTC (17 years, 3 months ago) by dann
Branch: MAIN
CVS Tags: before-remove-vms
Changes since 1.745: +4 -0 lines
Diff to previous 1.745
* s/ms-w32.h (MULTI_KBOARD): Remove.
* xterm.c:
* xselect.c:
* xfns.c:
* window.c:
* w32term.c:
* w32fns.c:
* terminal.c:
* termhooks.h:
* term.c:
* sysdep.c:
* keyboard.h:
* keyboard.c:
* frame.h:
* frame.c:
* frame.c: Remove references to MULTI_KBOARD, it is now the
default.
* config.in: Regenerate.

* config.nt (MULTI_KBOARD): Remove.

* configure.in (MULTI_KBOARD): Remove.


Revision 1.745 - (view) (download) (annotate) - [select for diffs]
Wed Jul 30 15:14:04 2008 UTC (17 years, 3 months ago) by dann
Branch: MAIN
Changes since 1.744: +4 -0 lines
Diff to previous 1.744
* systty.h (sensemode): Remove empty #if.  Remove reference to
BSD_TERMIOS, unused.

* sysdep.c: Remove reference to DGUX.
(closedir): Remove reference to BROKEN_CLOSEDIR, unused.

* config.in: Regenerate.

* configure.in (DO_BLOCK_INPUT): Remove, unused.


Revision 1.744 - (view) (download) (annotate) - [select for diffs]
Tue Jul 29 17:58:49 2008 UTC (17 years, 3 months ago) by cyd
Branch: MAIN
Changes since 1.743: +4 -0 lines
Diff to previous 1.743
* info/dir (File): Add mairix-el.


Revision 1.743 - (view) (download) (annotate) - [select for diffs]
Mon Jul 28 22:30:19 2008 UTC (17 years, 3 months ago) by lektu
Branch: MAIN
Changes since 1.742: +2 -3 lines
Diff to previous 1.742
Fix typos.


Revision 1.742 - (view) (download) (annotate) - [select for diffs]
Sun Jul 27 18:24:16 2008 UTC (17 years, 3 months ago) by dann
Branch: MAIN
CVS Tags: remove-carbon
Changes since 1.741: +11 -0 lines
Diff to previous 1.741
Remove support for Mac Carbon.
* mactoolbox.c:
* macterm.h:
* macterm.c:
* macselect.c:
* macmenu.c:
* macgui.h:
* macfns.c:
* mac.c: Remove file.
* s/darwin.h:
* m/intel386.h:
* xfaces.c:
* xdisp.c:
* window.c:
* tparam.c:
* termhooks.h:
* termcap.c:
* term.c:
* syssignal.h:
* sysselect.h:
* sysdep.c:
* process.c:
* lread.c:
* lisp.h:
* keyboard.c:
* image.c:
* fringe.c:
* frame.h:
* frame.c:
* fontset.c:
* font.h:
* font.c:
* fns.c:
* fileio.c:
* emacs.c:
* dispnew.c:
* dispextern.h:
* config.in:
* atimer.c:
* Makefile.in: Remove code for Carbon

* erc.el: Remove code for Carbon.

Remove support for Mac Carbon.
* term/mac-win.el: Remove file
* international/mule-cmds.el:
* version.el:
* startup.el:
* simple.el:
* mwheel.el:
* mouse.el:
* loadup.el:
* isearch.el:
* info.el:
* frame.el:
* faces.el:
* disp-table.el:
* cus-start.el:
* cus-face.el:
* cus-edit.el:
* Makefile.in: Remove code for Carbon.

Remove support for Mac Carbon.
* makefile.w32-in:
* emacsclient.c: Remove code for Carbon.

* PROBLEMS:
* MACHINES: Remove mentions of Mac Carbon.

* ns-emacs.texi:
* faq.texi: Remove mentions of Mac Carbon.

* os.texi:
* frames.texi:
* display.texi: Remove mentions of Mac Carbon.

* xresources.texi: Remove mentions of Mac Carbon.

* make-tarball.txt:
* admin.el:
* FOR-RELEASE:
* CPP-DEFINES: Remove mentions of Mac Carbon.

Remove support for Mac Carbon.
* mac: Remove directory.
* make-dist:
* configure.in:
* README:
* Makefile.in:
* INSTALL:  Remove code for Carbon.
* configure: Regenerate.


Revision 1.741 - (view) (download) (annotate) - [select for diffs]
Sun Jul 27 02:25:02 2008 UTC (17 years, 3 months ago) by arobert
Branch: MAIN
CVS Tags: before-remove-carbon
Changes since 1.740: +1 -1 lines
Diff to previous 1.740
fix date in last changelog entry


Revision 1.740 - (view) (download) (annotate) - [select for diffs]
Sun Jul 27 01:20:34 2008 UTC (17 years, 3 months ago) by arobert
Branch: MAIN
Changes since 1.739: +5 -0 lines
Diff to previous 1.739
fix typo with info installation under NS


Revision 1.260.2.113 - (view) (download) (annotate) - [select for diffs]
Sat Jul 26 14:17:14 2008 UTC (17 years, 3 months ago) by miles
Branch: lexbind
Changes since 1.260.2.112: +28 -3 lines
Diff to previous 1.260.2.112 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-94


Revision 1.553.2.22 - (view) (download) (annotate) - [select for diffs]
Fri Jul 25 17:50:32 2008 UTC (17 years, 3 months ago) by cyd
Branch: EMACS_22_BASE
Changes since 1.553.2.21: +6 -0 lines
Diff to previous 1.553.2.21 , to branch point 1.553
* configure.in: Check for getrlimit.

* configure: Regenerate.


Revision 1.739 - (view) (download) (annotate) - [select for diffs]
Fri Jul 25 17:49:16 2008 UTC (17 years, 3 months ago) by cyd
Branch: MAIN
Changes since 1.738: +6 -0 lines
Diff to previous 1.738
* configure.in: Check for getrlimit.

* configure: Regenerate.


Revision 1.738 - (view) (download) (annotate) - [select for diffs]
Wed Jul 23 06:26:25 2008 UTC (17 years, 3 months ago) by dann
Branch: MAIN
Changes since 1.737: +7 -0 lines
Diff to previous 1.737
* config.in: Regenerate.
* s/ms-w32.h (subprocesses): Define unconditionally.
* s/template.h (subprocesses): Update comment.
* s/vms.h (subprocesses):
* s/usg5-4.h (subprocesses):
* s/hpux10-20.h (subprocesses):
* s/gnu-linux.h (subprocesses):
* s/cygwin.h (subprocesses):
* s/bsd-common.h (subprocesses):
* s/aix4-2.h (subprocesses):
* s/darwin.h (subprocesses): Do not define, defined by default now.

* Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
Remove all references.
(temacs): Add GNUStep specific ld flags.

* Makefile.in (ALL_CFLAGS): Remove reference to C_SWITCH_SITE.

* config.nt (C_SWITCH_SITE, LD_SWITCH_SITE): Do not undefine.

* Makefile.in (ALL_CFLAGS): Remove reference to C_SWITCH_SITE.

* configure.in (LD_SWITCH_SITE): Remove, set the values directly
in src/Makefile.in.
(static): Remove, autoconf would always comment it out anyway.
(subprocesses): Define unconditionally.


Revision 1.737 - (view) (download) (annotate) - [select for diffs]
Sat Jul 19 16:56:31 2008 UTC (17 years, 3 months ago) by arobert
Branch: MAIN
Changes since 1.736: +1 -1 lines
Diff to previous 1.736
correct mis-entered date in previous change


Revision 1.736 - (view) (download) (annotate) - [select for diffs]
Sat Jul 19 16:42:22 2008 UTC (17 years, 3 months ago) by arobert
Branch: MAIN
Changes since 1.735: +7 -0 lines
Diff to previous 1.735
apply patch for GNUSTEP_MAKEFILES from Yavor Doganov


Revision 1.735 - (view) (download) (annotate) - [select for diffs]
Fri Jul 18 15:42:08 2008 UTC (17 years, 3 months ago) by lektu
Branch: MAIN
Changes since 1.734: +3 -3 lines
Diff to previous 1.734
Fix typos.


Revision 1.734 - (view) (download) (annotate) - [select for diffs]
Fri Jul 18 11:17:11 2008 UTC (17 years, 3 months ago) by handa
Branch: MAIN
Changes since 1.733: +5 -0 lines
Diff to previous 1.733
*** empty log message ***


Revision 1.260.2.112 - (view) (download) (annotate) - [select for diffs]
Fri Jul 18 00:03:47 2008 UTC (17 years, 3 months ago) by miles
Branch: lexbind
Changes since 1.260.2.111: +66 -0 lines
Diff to previous 1.260.2.111 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-93


Revision 1.733 - (view) (download) (annotate) - [select for diffs]
Thu Jul 17 18:14:15 2008 UTC (17 years, 3 months ago) by arobert
Branch: MAIN
Changes since 1.732: +11 -0 lines
Diff to previous 1.732
files were missed on previous checkin


Revision 1.732 - (view) (download) (annotate) - [select for diffs]
Thu Jul 17 03:33:55 2008 UTC (17 years, 3 months ago) by monnier
Branch: MAIN
Changes since 1.731: +4 -0 lines
Diff to previous 1.731
* Makefile.in: Undef LIB_STANDARD before defining it to silence warning
in case it was defined already.
USE @GNUSTEP_MAKEFILES@ rather than envvars.
* nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
ns_default.
(applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
Lisp_Objects.
* nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
(ns_defined_color, ns_color_to_lisp): Declare.
* nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
(Fns_own_selection_internal): Make the big ugly hack more explicit, so
it's accepted even with USE_LISP_UNION_TYPE.
* nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
(update_frame_tool_bar): Remove apparently obsolete tests for
non-integerness of f->tool_bar_lines.
(windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
* nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
(nsfont_open): Don't confuse NULL for Qnil.
* nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
* menu.h (find_and_call_menu_selection):
* menu.c (find_and_call_menu_selection): Use just int for vector size.
(find_and_return_menu_selection): Always return something.
* frame.h: Include dispextern.h for Display_Info.
(display_x_get_resource): Declare.
* configure.in: Extract and substitute GNUSTEP_MAKEFILES.


Revision 1.731 - (view) (download) (annotate) - [select for diffs]
Wed Jul 16 23:24:39 2008 UTC (17 years, 3 months ago) by arobert
Branch: MAIN
Changes since 1.730: +6 -0 lines
Diff to previous 1.730
various small cleanups detailed in changelogs


Revision 1.730 - (view) (download) (annotate) - [select for diffs]
Wed Jul 16 08:09:53 2008 UTC (17 years, 3 months ago) by gm
Branch: MAIN
Changes since 1.729: +5 -0 lines
Diff to previous 1.729
*** empty log message ***


Revision 1.729 - (view) (download) (annotate) - [select for diffs]
Wed Jul 16 07:45:41 2008 UTC (17 years, 3 months ago) by gm
Branch: MAIN
Changes since 1.728: +5 -0 lines
Diff to previous 1.728
*** empty log message ***


Revision 1.728 - (view) (download) (annotate) - [select for diffs]
Wed Jul 16 07:01:32 2008 UTC (17 years, 3 months ago) by dann
Branch: MAIN
Changes since 1.727: +6 -0 lines
Diff to previous 1.727
* editfns.c (Fuser_full_name): Replace the only use of
USER_FULL_NAME with its value.
* config.in: Regenerate.

* configure.in (freebsd, kfreebsd): Undo part of previous change.
(USER_FULL_NAME): Remove, not used anymore.
* configure: Regenerate.


Revision 1.727 - (view) (download) (annotate) - [select for diffs]
Tue Jul 15 18:14:52 2008 UTC (17 years, 3 months ago) by arobert
Branch: MAIN
Changes since 1.726: +12 -0 lines
Diff to previous 1.726
merging Emacs.app (NeXTstep port)


Revision 1.726 - (view) (download) (annotate) - [select for diffs]
Thu Jul 10 15:25:33 2008 UTC (17 years, 3 months ago) by dann
Branch: MAIN
CVS Tags: before-merge-emacs-app-to-trunk
Changes since 1.725: +2 -1 lines
Diff to previous 1.725
* configure.in: Remove references to desupported systems.
* configure: Regenerate.


Revision 1.725 - (view) (download) (annotate) - [select for diffs]
Thu Jul 10 02:32:52 2008 UTC (17 years, 3 months ago) by dann
Branch: MAIN
Changes since 1.724: +5 -0 lines
Diff to previous 1.724
* configure.in: Use macppc for Darwin.
* configure: Regenerate.

* m/powermac.h: Remove file, it is now identical to m/macppc.h.


Revision 1.724 - (view) (download) (annotate) - [select for diffs]
Sat Jul 5 20:01:11 2008 UTC (17 years, 3 months ago) by gm
Branch: MAIN
Changes since 1.723: +7 -0 lines
Diff to previous 1.723
*** empty log message ***


Revision 1.723 - (view) (download) (annotate) - [select for diffs]
Fri Jul 4 20:29:10 2008 UTC (17 years, 3 months ago) by gm
Branch: MAIN
Changes since 1.722: +4 -0 lines
Diff to previous 1.722
*** empty log message ***


Revision 1.260.2.111 - (view) (download) (annotate) - [select for diffs]
Fri Jul 4 15:32:40 2008 UTC (17 years, 3 months ago) by miles
Branch: lexbind
Changes since 1.260.2.110: +7 -0 lines
Diff to previous 1.260.2.110 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-92


Revision 1.260.2.110 - (view) (download) (annotate) - [select for diffs]
Fri Jul 4 15:30:50 2008 UTC (17 years, 3 months ago) by miles
Branch: lexbind
Changes since 1.260.2.109: +55 -7 lines
Diff to previous 1.260.2.109 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-91


Revision 1.260.2.109 - (view) (download) (annotate) - [select for diffs]
Fri Jul 4 15:28:14 2008 UTC (17 years, 3 months ago) by miles
Branch: lexbind
Changes since 1.260.2.108: +4 -0 lines
Diff to previous 1.260.2.108 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-90


Revision 1.722 - (view) (download) (annotate) - [select for diffs]
Tue Jul 1 02:55:50 2008 UTC (17 years, 3 months ago) by gm
Branch: MAIN
Changes since 1.721: +7 -0 lines
Diff to previous 1.721
*** empty log message ***


Revision 1.721 - (view) (download) (annotate) - [select for diffs]
Fri Jun 27 07:34:38 2008 UTC (17 years, 4 months ago) by gm
Branch: MAIN
Changes since 1.720: +1 -1 lines
Diff to previous 1.720
American English spelling fix.


Revision 1.720 - (view) (download) (annotate) - [select for diffs]
Thu Jun 26 04:24:26 2008 UTC (17 years, 4 months ago) by dann
Branch: MAIN
Changes since 1.719: +5 -0 lines
Diff to previous 1.719
* unexnext.c:
* m/ews4800.h:
* m/hp9000s300.h:
* m/ibm370aix.h:
* m/mips-siemens.h:
* m/ncr386.h:
* m/next.h:
* m/pmax.h:
* m/powerpcle.h:
* m/tandem-s2.h:
* s/386bsd.h:
* s/bsd386.h:
* s/bsd4-1.h:
* s/bsd4-2.h:
* s/bsdos2-1.h:
* s/bsdos2.h:
* s/bsdos3.h:
* s/bsdos4.h:
* s/nextstep.h:
* s/ultrix4-3.h:
* s/usg5-0.h:
* s/usg5-2-2.h:
* s/usg5-2.h:
* s/usg5-4-3.h:
* s/ux4800.h:
* s/uxpds.h:
* s/uxpv.h: Remove support for obsolete systems.
* s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
Remove, insert contents in s/hpux-10.20.h
* s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
Remove, insert contents in s/aix-4.2.h
* s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
* s/bsd4-3.h: Rename to ..
* s/bsd-common.h: ... this.
* src/data.c:
* src/doc.c:
* src/ecrt0.c:
* src/emacs.c:
* src/fileio.c:
* src/floatfns.c:
* src/keyboard.c:
* src/mem-limits.h:
* src/print.c:
* src/process.c:
* src/sysdep.c:
* src/syssignal.h:
* src/systty.h:
* src/syswait.h:
* src/term.c:
* src/unexec.c:
* src/unexelf.c:
* src/unexhp9k800.c:
* src/m/hp800.h:
* src/m/ibmrs6000.h:
* src/m/mips.h:
* src/m/vax.h:
* src/s/darwin.h:
* src/s/freebsd.h:
* src/s/gnu.h:
* src/s/ms-w32.h:
* src/s/msdos.h:
* src/s/netbsd.h:
* src/s/template.h: Remove references to obsolete variables.

* Makefile.in: Add dependencies for all unexec files.
(admindir): Remove unused variable.
(UNEXEC_SRC): Remove references.

* config.nt: Remove reference to UNEXEC_SRC.

* lwlib.c: Remove references to obsolete variables.

* fakemail.c: Remove references to obsolete variables.

* os.texi: Remove references to obsolete systems.

* configure.in:
* configure: Remove references to obsolete systems.


Revision 1.719 - (view) (download) (annotate) - [select for diffs]
Wed Jun 25 15:46:22 2008 UTC (17 years, 4 months ago) by monnier
Branch: MAIN
Changes since 1.718: +12 -0 lines
Diff to previous 1.718
* Makefile.in (Makefile): Use it for its timestamp value as well, and
make it depend on all other */.in files.
(src/Makefile, src/config.stamp, lib-src/Makefile)
(doc/emacs/Makefile, doc/misc/Makefile, doc/lispref/Makefile)
(doc/lispintro/Makefile, oldXMenu/Makefile, lwlib/Makefile)
(leim/Makefile, lisp/Makefile): Remove those overlapping targets.
(leim, ${SUBDIR}, blessmail): Only depend on Makefile now.
* configure.in: Don't create src/config.stamp any more.


Revision 1.718 - (view) (download) (annotate) - [select for diffs]
Tue Jun 24 01:07:31 2008 UTC (17 years, 4 months ago) by lektu
Branch: MAIN
Changes since 1.717: +5 -7 lines
Diff to previous 1.717
Fix typos.


Revision 1.717 - (view) (download) (annotate) - [select for diffs]
Sun Jun 22 13:57:23 2008 UTC (17 years, 4 months ago) by monnier
Branch: MAIN
Changes since 1.716: +4 -0 lines
Diff to previous 1.716
* Makefile.in ${SUBDIR}: Pass additional BOOTSTRAPEMACS argument.
* Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
Use $(BOOTSTRAPEMACS) rather than witness-emacs.
(bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
(witness-emacs): Remove.
(lisp, shortlisp): Move loaddefs.el earlier.
(mostlyclean): Forget about witness-emacs.
* Makefile.in (COMPILE_FIRST): Trim down and add autoload.el.


Revision 1.716 - (view) (download) (annotate) - [select for diffs]
Sun Jun 22 02:20:24 2008 UTC (17 years, 4 months ago) by gm
Branch: MAIN
Changes since 1.715: +4 -0 lines
Diff to previous 1.715
*** empty log message ***


Revision 1.715 - (view) (download) (annotate) - [select for diffs]
Sat Jun 21 12:48:10 2008 UTC (17 years, 4 months ago) by rfrancoise
Branch: MAIN
Changes since 1.714: +4 -0 lines
Diff to previous 1.714
(INFO_FILES): Add sasl.


Revision 1.714 - (view) (download) (annotate) - [select for diffs]
Sat Jun 21 01:38:33 2008 UTC (17 years, 4 months ago) by monnier
Branch: MAIN
Changes since 1.713: +8 -0 lines
Diff to previous 1.713
Make "make" do a bootstrap if needed.
* src/Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
(bootstrapclean): Remove.
(.el.elc): New rule.
(PRECOMP): New var.
(../lisp/subdirs.el): Remove.
(bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
(witness-emacs): New target.
(mostlyclean): Remove witness-emacs as well.
(../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
Add witness-emacs dependency.
* lisp/loadup.el: Don't add emacs-<VERS> name when bootstrapping.
* lisp/Makefile.in (emacs-deps): Remove.
($(lisp)/cus-load.el, $(lisp)/finder-inf.el): Re-add.
(all): Use them.
(autogen-clean): Remove.
* Makefile.in (maybe_bootstrap, src/bootstrap-emacs${EXEEXT})
(bootstrap-build): Remove.
(top_bootclean): New var.
(top_distclean, bootstrap-clean): Use it.
(bootstrap): Don't recheck config.  Make normally.


Revision 1.713 - (view) (download) (annotate) - [select for diffs]
Fri Jun 20 21:48:11 2008 UTC (17 years, 4 months ago) by monnier
Branch: MAIN
Changes since 1.712: +11 -2 lines
Diff to previous 1.712
* src/Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
(bootstrap-clean): New target that keeps TAGS around.
(../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
(bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
* lisp/Makefile.in (all): New target.
(bootstrap-prepare): Remove.
* Makefile.in (SUBDIR): Include `lisp'.
(lisp): Depend on `src'.
(top_distclean): Don't remove config.status.
(bootstrap-clean): New target.
(maintainer-clean): Use it.
(bootstrap): Use bootstrap-clean.  Re-run config.status.
(src/bootstrap-emacs${EXEEXT}): New target.
(bootstrap-build): Use it.  Don't use bootstrap-prepare because
src/Makefile now takes care of it.
(bootfast, bootstrap-clean-before, bootstrap-clean-before-fast): Remove.


Revision 1.712 - (view) (download) (annotate) - [select for diffs]
Fri Jun 20 14:50:18 2008 UTC (17 years, 4 months ago) by monnier
Branch: MAIN
Changes since 1.711: +4 -0 lines
Diff to previous 1.711
* configure.in: Check for presence of cfmakeraw and cfsetspeed.
* sysdep.c (cfmakeraw): Provide fallback implementation.
(serial_configure): Provide fallback implementation of cfsetspeed.


Revision 1.711 - (view) (download) (annotate) - [select for diffs]
Sun Jun 15 02:23:08 2008 UTC (17 years, 4 months ago) by gm
Branch: MAIN
Changes since 1.710: +4 -0 lines
Diff to previous 1.710
*** empty log message ***


Revision 1.260.2.108 - (view) (download) (annotate) - [select for diffs]
Thu Jun 12 05:36:49 2008 UTC (17 years, 4 months ago) by miles
Branch: lexbind
Changes since 1.260.2.107: +14 -1 lines
Diff to previous 1.260.2.107 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-89


Revision 1.710 - (view) (download) (annotate) - [select for diffs]
Tue Jun 10 16:49:59 2008 UTC (17 years, 4 months ago) by lektu
Branch: MAIN
Changes since 1.709: +1 -1 lines
Diff to previous 1.709
Fix committer names and other typos.


Revision 1.709 - (view) (download) (annotate) - [select for diffs]
Mon Jun 9 10:08:13 2008 UTC (17 years, 4 months ago) by lektu
Branch: MAIN
Changes since 1.708: +1 -1 lines
Diff to previous 1.708
Fix typo. "cvs -d" is another entirely different switch.


Revision 1.708 - (view) (download) (annotate) - [select for diffs]
Mon Jun 9 08:46:21 2008 UTC (17 years, 4 months ago) by acmacm
Branch: MAIN
Changes since 1.707: +4 -0 lines
Diff to previous 1.707
*** empty log message ***


Revision 1.707 - (view) (download) (annotate) - [select for diffs]
Sun Jun 8 11:33:11 2008 UTC (17 years, 4 months ago) by esr
Branch: MAIN
Changes since 1.706: +4 -0 lines
Diff to previous 1.706
Document when cvs -d up may be needed.


Revision 1.706 - (view) (download) (annotate) - [select for diffs]
Sat Jun 7 02:47:27 2008 UTC (17 years, 4 months ago) by gm
Branch: MAIN
Changes since 1.705: +5 -0 lines
Diff to previous 1.705
*** empty log message ***


Revision 1.260.2.107 - (view) (download) (annotate) - [select for diffs]
Tue Jun 3 16:06:26 2008 UTC (17 years, 4 months ago) by miles
Branch: lexbind
Changes since 1.260.2.106: +9 -0 lines
Diff to previous 1.260.2.106 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-85


Revision 1.705 - (view) (download) (annotate) - [select for diffs]
Sun Jun 1 17:39:27 2008 UTC (17 years, 4 months ago) by dann
Branch: MAIN
Changes since 1.704: +5 -0 lines
Diff to previous 1.704
* configure.in (USE_LUCID, USE_MOTIF): Don't use "==".
* configure: Regenerate.


Revision 1.704 - (view) (download) (annotate) - [select for diffs]
Wed May 28 17:39:56 2008 UTC (17 years, 5 months ago) by monnier
Branch: MAIN
Changes since 1.703: +4 -0 lines
Diff to previous 1.703
Don't touch subdirs.el if it is unchanged.


Revision 1.260.2.106 - (view) (download) (annotate) - [select for diffs]
Mon May 26 10:06:14 2008 UTC (17 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.105: +1 -1 lines
Diff to previous 1.260.2.105 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-84


Revision 1.703 - (view) (download) (annotate) - [select for diffs]
Fri May 23 04:39:23 2008 UTC (17 years, 5 months ago) by gm
Branch: MAIN
Changes since 1.702: +1 -1 lines
Diff to previous 1.702
Spelling fix.


Revision 1.260.2.105 - (view) (download) (annotate) - [select for diffs]
Fri May 23 04:33:47 2008 UTC (17 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.104: +13 -0 lines
Diff to previous 1.260.2.104 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-83


Revision 1.702 - (view) (download) (annotate) - [select for diffs]
Wed May 14 01:52:47 2008 UTC (17 years, 5 months ago) by handa
Branch: MAIN
Changes since 1.701: +7 -0 lines
Diff to previous 1.701
*** empty log message ***


Revision 1.701 - (view) (download) (annotate) - [select for diffs]
Fri May 9 04:28:28 2008 UTC (17 years, 5 months ago) by gm
Branch: MAIN
Changes since 1.700: +6 -0 lines
Diff to previous 1.700
*** empty log message ***


Revision 1.260.2.104 - (view) (download) (annotate) - [select for diffs]
Thu May 8 11:49:36 2008 UTC (17 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.103: +28 -6 lines
Diff to previous 1.260.2.103 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-82


Revision 1.700 - (view) (download) (annotate) - [select for diffs]
Wed May 7 10:32:47 2008 UTC (17 years, 5 months ago) by eliz
Branch: MAIN
Changes since 1.699: +5 -0 lines
Diff to previous 1.699
*** empty log message ***


Revision 1.699 - (view) (download) (annotate) - [select for diffs]
Wed May 7 07:26:09 2008 UTC (17 years, 5 months ago) by gm
Branch: MAIN
Changes since 1.698: +4 -6 lines
Diff to previous 1.698
Switch to recommended form of GPLv3 permissions notice.


Revision 1.698 - (view) (download) (annotate) - [select for diffs]
Sun May 4 19:46:13 2008 UTC (17 years, 5 months ago) by miles
Branch: MAIN
Changes since 1.697: +7 -0 lines
Diff to previous 1.697
Merge from emacs--rel--22

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1142


Revision 1.697 - (view) (download) (annotate) - [select for diffs]
Sat May 3 20:16:45 2008 UTC (17 years, 5 months ago) by gm
Branch: MAIN
Changes since 1.696: +7 -0 lines
Diff to previous 1.696
*** empty log message ***


Revision 1.696 - (view) (download) (annotate) - [select for diffs]
Sat May 3 18:59:40 2008 UTC (17 years, 5 months ago) by gm
Branch: MAIN
Changes since 1.695: +5 -0 lines
Diff to previous 1.695
*** empty log message ***


Revision 1.553.2.21 - (view) (download) (annotate) - [select for diffs]
Fri May 2 09:38:39 2008 UTC (17 years, 5 months ago) by mituharu
Branch: EMACS_22_BASE
Changes since 1.553.2.20: +7 -0 lines
Diff to previous 1.553.2.20 , to branch point 1.553
*** empty log message ***


Revision 1.260.2.103 - (view) (download) (annotate) - [select for diffs]
Thu Apr 24 01:56:52 2008 UTC (17 years, 6 months ago) by miles
Branch: lexbind
Changes since 1.260.2.102: +109 -65 lines
Diff to previous 1.260.2.102 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-79


Revision 1.260.2.102 - (view) (download) (annotate) - [select for diffs]
Thu Apr 24 01:52:05 2008 UTC (17 years, 6 months ago) by miles
Branch: lexbind
Changes since 1.260.2.101: +13 -0 lines
Diff to previous 1.260.2.101 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-78


Revision 1.695 - (view) (download) (annotate) - [select for diffs]
Wed Apr 23 05:55:33 2008 UTC (17 years, 6 months ago) by miles
Branch: MAIN
CVS Tags: font-backend-base
Branch point for: font-backend
Changes since 1.694: +4 -0 lines
Diff to previous 1.694
Merge from emacs--rel--22

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1121


Revision 1.694 - (view) (download) (annotate) - [select for diffs]
Fri Apr 18 15:48:03 2008 UTC (17 years, 6 months ago) by monnier
Branch: MAIN
Changes since 1.693: +4 -0 lines
Diff to previous 1.693
* configure.in: Define USE_LUCID/USE_MOTIF in config.h.
* lwlib/Makefile.in (TOOLKIT_DEFINES): Remove.
* src/Makefile.in (TOOLKIT_DEFINES): Remove.
(LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.


Revision 1.693 - (view) (download) (annotate) - [select for diffs]
Wed Apr 16 19:53:02 2008 UTC (17 years, 6 months ago) by monnier
Branch: MAIN
Changes since 1.692: +6 -0 lines
Diff to previous 1.692
* configure.in (SYNC_INPUT): Use OPTION_DEFAULT_ON and AC_DEFINE
rather than change CPPFLAGS.
(HAVE_GTK): Rename to USE_GTK.
* Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
done in config.h.


Revision 1.692 - (view) (download) (annotate) - [select for diffs]
Wed Apr 16 17:33:40 2008 UTC (17 years, 6 months ago) by monnier
Branch: MAIN
Changes since 1.691: +5 -0 lines
Diff to previous 1.691
Replace the obsolete macros AC_AIX and
AC_GNU_SOURCE with AC_USE_SYSTEM_EXTENSIONS.


Revision 1.553.2.20 - (view) (download) (annotate) - [select for diffs]
Fri Apr 11 03:19:07 2008 UTC (17 years, 6 months ago) by dann
Branch: EMACS_22_BASE
Changes since 1.553.2.19: +4 -0 lines
Diff to previous 1.553.2.19 , to branch point 1.553
Remove hpux10.20 from the desupported list.


Revision 1.691 - (view) (download) (annotate) - [select for diffs]
Sat Apr 5 10:06:14 2008 UTC (17 years, 6 months ago) by schwab
Branch: MAIN
Changes since 1.690: +4 -0 lines
Diff to previous 1.690
No longer create admin/unidata/Makefile.


Revision 1.690 - (view) (download) (annotate) - [select for diffs]
Fri Mar 28 09:58:35 2008 UTC (17 years, 7 months ago) by schwab
Branch: MAIN
Changes since 1.689: +5 -0 lines
Diff to previous 1.689
(SUBDIR_MAKEFILES): Add lisp/Makefile.
(lisp/Makefile): New rule.


Revision 1.689 - (view) (download) (annotate) - [select for diffs]
Thu Mar 27 11:33:14 2008 UTC (17 years, 7 months ago) by handa
Branch: MAIN
Changes since 1.688: +66 -66 lines
Diff to previous 1.688
*** empty log message ***


Revision 1.553.2.19 - (view) (download) (annotate) - [select for diffs]
Wed Mar 26 13:47:24 2008 UTC (17 years, 7 months ago) by cyd
Branch: EMACS_22_BASE
CVS Tags: EMACS_22_2
Changes since 1.553.2.18: +4 -0 lines
Diff to previous 1.553.2.18 , to branch point 1.553
Bump version to 22.2.


Revision 1.688 - (view) (download) (annotate) - [select for diffs]
Thu Mar 13 03:13:19 2008 UTC (17 years, 7 months ago) by gm
Branch: MAIN
Changes since 1.687: +5 -0 lines
Diff to previous 1.687
*** empty log message ***


Revision 1.687 - (view) (download) (annotate) - [select for diffs]
Tue Mar 11 08:14:28 2008 UTC (17 years, 7 months ago) by jhd
Branch: MAIN
Changes since 1.686: +4 -0 lines
Diff to previous 1.686
*** empty log message ***


Revision 1.686 - (view) (download) (annotate) - [select for diffs]
Tue Mar 11 04:28:49 2008 UTC (17 years, 7 months ago) by gm
Branch: MAIN
Changes since 1.685: +3 -0 lines
Diff to previous 1.685
*** empty log message ***


Revision 1.685 - (view) (download) (annotate) - [select for diffs]
Tue Mar 11 03:00:14 2008 UTC (17 years, 7 months ago) by gm
Branch: MAIN
Changes since 1.684: +4 -0 lines
Diff to previous 1.684
*** empty log message ***


Revision 1.340.2.45.2.24 - (view) (download) (annotate) - [select for diffs]
Mon Mar 10 07:49:48 2008 UTC (17 years, 7 months ago) by jhd
Branch: unicode-xft
Changes since 1.340.2.45.2.23: +4 -0 lines
Diff to previous 1.340.2.45.2.23 , to branch point 1.340.2.45 , to next main 1.340.2.88
*** empty log message ***


Revision 1.684 - (view) (download) (annotate) - [select for diffs]
Wed Mar 5 20:03:31 2008 UTC (17 years, 7 months ago) by gm
Branch: MAIN
Changes since 1.683: +3 -0 lines
Diff to previous 1.683
*** empty log message ***


Revision 1.683 - (view) (download) (annotate) - [select for diffs]
Wed Mar 5 03:53:49 2008 UTC (17 years, 7 months ago) by gm
Branch: MAIN
Changes since 1.682: +4 -0 lines
Diff to previous 1.682
*** empty log message ***


Revision 1.682 - (view) (download) (annotate) - [select for diffs]
Mon Mar 3 02:26:40 2008 UTC (17 years, 7 months ago) by gm
Branch: MAIN
Changes since 1.681: +6 -0 lines
Diff to previous 1.681
*** empty log message ***


Revision 1.260.2.101 - (view) (download) (annotate) - [select for diffs]
Sat Mar 1 03:01:01 2008 UTC (17 years, 8 months ago) by miles
Branch: lexbind
Changes since 1.260.2.100: +14 -7 lines
Diff to previous 1.260.2.100 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-77


Revision 1.681 - (view) (download) (annotate) - [select for diffs]
Fri Feb 29 04:32:15 2008 UTC (17 years, 8 months ago) by gm
Branch: MAIN
Changes since 1.680: +0 -9 lines
Diff to previous 1.680
*** empty log message ***


Revision 1.680 - (view) (download) (annotate) - [select for diffs]
Fri Feb 29 04:31:23 2008 UTC (17 years, 8 months ago) by gm
Branch: MAIN
Changes since 1.679: +4 -0 lines
Diff to previous 1.679
*** empty log message ***


Revision 1.679 - (view) (download) (annotate) - [select for diffs]
Wed Feb 27 18:32:13 2008 UTC (17 years, 8 months ago) by jhd
Branch: MAIN
Changes since 1.678: +4 -0 lines
Diff to previous 1.678
*** empty log message ***


Revision 1.260.2.100 - (view) (download) (annotate) - [select for diffs]
Mon Feb 25 09:56:48 2008 UTC (17 years, 8 months ago) by miles
Branch: lexbind
Changes since 1.260.2.99: +52 -3 lines
Diff to previous 1.260.2.99 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-76


Revision 1.678 - (view) (download) (annotate) - [select for diffs]
Mon Feb 25 08:17:18 2008 UTC (17 years, 8 months ago) by dann
Branch: MAIN
Changes since 1.677: +8 -0 lines
Diff to previous 1.677
* configure.in: Print an error for systems that we think are
obsolete and are proposed to be removed.  Remove some more unused
systems.

* configure: Regenerate.


Revision 1.553.2.18 - (view) (download) (annotate) - [select for diffs]
Mon Feb 25 08:12:29 2008 UTC (17 years, 8 months ago) by dann
Branch: EMACS_22_BASE
CVS Tags: EMACS_PRETEST_22_1_92
Changes since 1.553.2.17: +7 -0 lines
Diff to previous 1.553.2.17 , to branch point 1.553
* configure.in: Print an error for systems that we think are
obsolete and are proposed to be removed.

* configure: Regenerate.


Revision 1.677 - (view) (download) (annotate) - [select for diffs]
Sun Feb 24 18:53:07 2008 UTC (17 years, 8 months ago) by dann
Branch: MAIN
Changes since 1.676: +6 -0 lines
Diff to previous 1.676
* configure.in: Remove references to obsolete variables and
systems.
* configure: Regenerate.

* Makefile.in (NO_SHORTNAMES):
* emacsclient.c (NO_SHORTNAMES):
* fakemail.c (NO_SHORTNAMES):
* make-docfile.c (NO_SHORTNAMES):
* movemail.c (NO_SHORTNAMES):
* pop.c (NO_SHORTNAMES): Remove references to obsolete variable.

* config.nt (SHORTNAMES): Remove reference to obsolete variable.

* s/vms4-0.h:
* s/vms4-2.h:
* s/vms4-4.h:
* s/vms5-5.h: Remove, unused.

* s/irix5-2.h:
* s/irix6-0.h:
* s/riscos5.h:
* s/mach-bsd4-3.h:
* m/mips4.h: Remove files for obsolete systems

* Makefile.in:
* filelock.c:
* unexmips.c:
* m/hp9000s300.h:
* m/iris4d.h:
* s/aix3-1.h:
* s/hpux.h:
* s/msdos.h:
* s/usg5-0.h:
* s/usg5-2-2.h:
* s/usg5-2.h:
* s/usg5-3.h: Remove references to obsolete variables.

* s/irix5-0.h: Remove, move all the contents ...
* s/irix6-5.h: ... here.  Simplify.
* config.in: Regenerate.


Revision 1.676 - (view) (download) (annotate) - [select for diffs]
Sun Feb 24 10:09:06 2008 UTC (17 years, 8 months ago) by miles
Branch: MAIN
Changes since 1.675: +7 -3 lines
Diff to previous 1.675
Merge from emacs--rel--22

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1074


Revision 1.675 - (view) (download) (annotate) - [select for diffs]
Thu Feb 21 09:04:29 2008 UTC (17 years, 8 months ago) by gm
Branch: MAIN
Changes since 1.674: +3 -0 lines
Diff to previous 1.674
*** empty log message ***


Revision 1.674 - (view) (download) (annotate) - [select for diffs]
Thu Feb 21 04:03:09 2008 UTC (17 years, 8 months ago) by gm
Branch: MAIN
Changes since 1.673: +5 -0 lines
Diff to previous 1.673
*** empty log message ***


Revision 1.673 - (view) (download) (annotate) - [select for diffs]
Wed Feb 13 21:08:59 2008 UTC (17 years, 8 months ago) by bastien1
Branch: MAIN
Changes since 1.672: +0 -0 lines
Diff to previous 1.672
*** empty log message ***


Revision 1.672 - (view) (download) (annotate) - [select for diffs]
Wed Feb 13 21:07:03 2008 UTC (17 years, 8 months ago) by bastien1
Branch: MAIN
Changes since 1.671: +0 -0 lines
Diff to previous 1.671
*** empty log message ***


Revision 1.553.2.17 - (view) (download) (annotate) - [select for diffs]
Sun Feb 10 00:26:01 2008 UTC (17 years, 8 months ago) by rms
Branch: EMACS_22_BASE
CVS Tags: EMACS_PRETEST_22_1_91
Changes since 1.553.2.16: +4 -0 lines
Diff to previous 1.553.2.16 , to branch point 1.553
*** empty log message ***


Revision 1.671 - (view) (download) (annotate) - [select for diffs]
Sat Feb 9 18:03:10 2008 UTC (17 years, 8 months ago) by dann
Branch: MAIN
Changes since 1.670: +5 -0 lines
Diff to previous 1.670
* configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
dealing with obsolete variables.

* fakemail.c (MAIL_PROGRAM_NAME): Remove unused conditional.
(main): Replace MAIL_PROGRAM_NAME with its value.

* src/Makefile.in:
* src/emacs.c:
* src/gmalloc.c:
* src/keyboard.c:
* src/lisp.h:
* src/m/ibm370aix.h:
* src/process.c:
* src/regex.c:
* src/s/hpux.h:
* src/sysdep.c:
* src/sysselect.h:
* src/systty.h:
* src/unexec.c:
* src/w32term.c:
* src/xsmfns.c:
* src/xterm.c: Remove code that deals with obsolete variables.

* s/msdos.h (DONT_NEED_ENVIRON): Don't define.

* ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
nothing else needs it anymore.


Revision 1.670 - (view) (download) (annotate) - [select for diffs]
Fri Feb 8 20:29:53 2008 UTC (17 years, 8 months ago) by gm
Branch: MAIN
Changes since 1.669: +4 -0 lines
Diff to previous 1.669
*** empty log message ***


Revision 1.669 - (view) (download) (annotate) - [select for diffs]
Fri Feb 8 07:49:24 2008 UTC (17 years, 8 months ago) by mwolson
Branch: MAIN
Changes since 1.668: +2 -0 lines
Diff to previous 1.668
Makefile.in (INFO_FILES): Add epa.


Revision 1.668 - (view) (download) (annotate) - [select for diffs]
Fri Feb 8 07:01:20 2008 UTC (17 years, 8 months ago) by mwolson
Branch: MAIN
Changes since 1.667: +5 -0 lines
Diff to previous 1.667
EasyPG: Add info/dir entry.


Revision 1.667 - (view) (download) (annotate) - [select for diffs]
Wed Feb 6 07:57:33 2008 UTC (17 years, 8 months ago) by gm
Branch: MAIN
Changes since 1.666: +6 -0 lines
Diff to previous 1.666
*** empty log message ***


Revision 1.666 - (view) (download) (annotate) - [select for diffs]
Wed Feb 6 07:53:38 2008 UTC (17 years, 8 months ago) by gm
Branch: MAIN
Changes since 1.665: +6 -1 lines
Diff to previous 1.665
*** empty log message ***


Revision 1.665 - (view) (download) (annotate) - [select for diffs]
Tue Feb 5 20:50:47 2008 UTC (17 years, 8 months ago) by lektu
Branch: MAIN
Changes since 1.664: +4 -0 lines
Diff to previous 1.664
*** empty log message ***


Revision 1.553.2.16 - (view) (download) (annotate) - [select for diffs]
Tue Feb 5 20:46:55 2008 UTC (17 years, 8 months ago) by lektu
Branch: EMACS_22_BASE
Changes since 1.553.2.15: +0 -4 lines
Diff to previous 1.553.2.15 , to branch point 1.553
*** empty log message ***


Revision 1.553.2.15 - (view) (download) (annotate) - [select for diffs]
Tue Feb 5 16:13:34 2008 UTC (17 years, 8 months ago) by lektu
Branch: EMACS_22_BASE
Changes since 1.553.2.14: +9 -6 lines
Diff to previous 1.553.2.14 , to branch point 1.553
*** empty log message ***


Revision 1.260.2.99 - (view) (download) (annotate) - [select for diffs]
Tue Feb 5 09:30:39 2008 UTC (17 years, 8 months ago) by miles
Branch: lexbind
Changes since 1.260.2.98: +4 -0 lines
Diff to previous 1.260.2.98 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-75


Revision 1.260.2.98 - (view) (download) (annotate) - [select for diffs]
Tue Feb 5 09:30:01 2008 UTC (17 years, 8 months ago) by miles
Branch: lexbind
Changes since 1.260.2.97: +9 -4 lines
Diff to previous 1.260.2.97 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-72


Revision 1.260.2.97 - (view) (download) (annotate) - [select for diffs]
Tue Feb 5 09:29:10 2008 UTC (17 years, 8 months ago) by miles
Branch: lexbind
Changes since 1.260.2.96: +61 -2 lines
Diff to previous 1.260.2.96 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-71


Revision 1.664 - (view) (download) (annotate) - [select for diffs]
Tue Feb 5 05:13:11 2008 UTC (17 years, 8 months ago) by mwolson
Branch: MAIN
Changes since 1.663: +4 -0 lines
Diff to previous 1.663
configure.in: Enable D-Bus by default.


Revision 1.663 - (view) (download) (annotate) - [select for diffs]
Tue Feb 5 02:21:43 2008 UTC (17 years, 8 months ago) by handa
Branch: MAIN
Changes since 1.662: +4 -0 lines
Diff to previous 1.662
*** empty log message ***


Revision 1.662 - (view) (download) (annotate) - [select for diffs]
Mon Feb 4 17:23:40 2008 UTC (17 years, 8 months ago) by dann
Branch: MAIN
Changes since 1.661: +5 -0 lines
Diff to previous 1.661
* make-dist: Remove references to files in mac/ that have been
deleted.

* README:
* INSTALL: Only mention MacOSX.

* cw6-mcp.xml:
* make-package:
* makefile.MPW:
* inc/alloca.h:
* inc/config.h:
* inc/defs-cw6.h:
* inc/dirent.h:
* inc/epaths.h:
* inc/grp.h:
* inc/m-mac.h:
* inc/pwd.h:
* inc/s-mac.h:
* inc/termio.h:
* inc/utime.h:
* inc/utsname.h:
* inc/sys/file.h:
* inc/sys/ioctl.h:
* inc/sys/param.h:
* inc/sys/stat.h:
* inc/sys/time.h:
* inc/sys/types.h:
* src/EmacsMPW.r: Remove files for no longer supported pre-MacOSX
systems.


Revision 1.661 - (view) (download) (annotate) - [select for diffs]
Mon Feb 4 14:20:58 2008 UTC (17 years, 8 months ago) by lektu
Branch: MAIN
Changes since 1.660: +0 -4 lines
Diff to previous 1.660
Remove duplicate entry.


Revision 1.660 - (view) (download) (annotate) - [select for diffs]
Sat Feb 2 20:57:58 2008 UTC (17 years, 8 months ago) by gm
Branch: MAIN
Changes since 1.659: +6 -2 lines
Diff to previous 1.659
Add entry I forgot to make yesterday.
Remove unnecessary entries about re-generating configure.


Revision 1.659 - (view) (download) (annotate) - [select for diffs]
Sat Feb 2 20:46:40 2008 UTC (17 years, 8 months ago) by ttn
Branch: MAIN
Changes since 1.658: +8 -0 lines
Diff to previous 1.658
Arrange for innards to jive w/ summary for libotf and m17n-flt.

* configure.in: For libotf and m17n-flt checks, set shell vars
HAVE_LIBOTF and HAVE_M17N_FLT instead of pkg_check_libotf and
pkg_check_m17n_flt, respectively, for the sake of the summary output.
* configure: Regenerated.


Revision 1.658 - (view) (download) (annotate) - [select for diffs]
Sat Feb 2 15:49:46 2008 UTC (17 years, 8 months ago) by eliz
Branch: MAIN
Changes since 1.657: +6 -0 lines
Diff to previous 1.657
*** empty log message ***


Revision 1.657 - (view) (download) (annotate) - [select for diffs]
Sat Feb 2 03:42:54 2008 UTC (17 years, 8 months ago) by gm
Branch: MAIN
Changes since 1.656: +8 -22 lines
Diff to previous 1.656
Remove multiple entries about re-generating configure.
Adjust dates of unicode merge entries to UTC.


Revision 1.656 - (view) (download) (annotate) - [select for diffs]
Fri Feb 1 16:04:58 2008 UTC (17 years, 8 months ago) by miles
Branch: MAIN
CVS Tags: merge-unicode-to-trunk
Changes since 1.655: +55 -0 lines
Diff to previous 1.655
Merge ChangeLog.unicode files into ChangeLogs

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1038


Revision 1.260.2.96 - (view) (download) (annotate) - [select for diffs]
Wed Jan 30 21:19:32 2008 UTC (17 years, 9 months ago) by miles
Branch: lexbind
Changes since 1.260.2.95: +64 -0 lines
Diff to previous 1.260.2.95 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-70


Revision 1.340.2.88 - (view) (download) (annotate) - [select for diffs]
Wed Jan 30 07:56:57 2008 UTC (17 years, 9 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.87: +64 -0 lines
Diff to previous 1.340.2.87 , to branch point 1.340 , to next main 1.876
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-324


Revision 1.655 - (view) (download) (annotate) - [select for diffs]
Tue Jan 29 06:54:28 2008 UTC (17 years, 9 months ago) by miles
Branch: MAIN
CVS Tags: before-merge-unicode-to-trunk, emacs-unicode-2-base
Changes since 1.654: +6 -0 lines
Diff to previous 1.654
Merge from emacs--rel--22

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1021


Revision 1.654 - (view) (download) (annotate) - [select for diffs]
Sun Jan 27 16:06:02 2008 UTC (17 years, 9 months ago) by dann
Branch: MAIN
Changes since 1.653: +4 -0 lines
Diff to previous 1.653
* configure.in: Update comment.

* Makefile.in: Remove references to unused macros.


Revision 1.653 - (view) (download) (annotate) - [select for diffs]
Sat Jan 26 21:05:58 2008 UTC (17 years, 9 months ago) by gm
Branch: MAIN
Changes since 1.652: +1 -0 lines
Diff to previous 1.652
*** empty log message ***


Revision 1.652 - (view) (download) (annotate) - [select for diffs]
Sat Jan 26 04:28:04 2008 UTC (17 years, 9 months ago) by gm
Branch: MAIN
Changes since 1.651: +4 -0 lines
Diff to previous 1.651
*** empty log message ***


Revision 1.651 - (view) (download) (annotate) - [select for diffs]
Fri Jan 25 04:32:52 2008 UTC (17 years, 9 months ago) by gm
Branch: MAIN
Changes since 1.650: +6 -0 lines
Diff to previous 1.650
*** empty log message ***


Revision 1.650 - (view) (download) (annotate) - [select for diffs]
Thu Jan 24 04:50:50 2008 UTC (17 years, 9 months ago) by gm
Branch: MAIN
Changes since 1.649: +5 -4 lines
Diff to previous 1.649
*** empty log message ***


Revision 1.553.2.14 - (view) (download) (annotate) - [select for diffs]
Wed Jan 23 07:06:54 2008 UTC (17 years, 9 months ago) by dann
Branch: EMACS_22_BASE
CVS Tags: EMACS_PRETEST_22_1_90
Changes since 1.553.2.13: +6 -0 lines
Diff to previous 1.553.2.13 , to branch point 1.553
* configure.in (xtensa): Match more configurations.

* configure: Regenerate.


Revision 1.649 - (view) (download) (annotate) - [select for diffs]
Wed Jan 23 04:00:10 2008 UTC (17 years, 9 months ago) by mwolson
Branch: MAIN
Changes since 1.648: +2 -0 lines
Diff to previous 1.648
configure: Regenerate.


Revision 1.648 - (view) (download) (annotate) - [select for diffs]
Wed Jan 23 03:50:44 2008 UTC (17 years, 9 months ago) by mwolson
Branch: MAIN
Changes since 1.647: +4 -0 lines
Diff to previous 1.647
configure.in: Remove initial whitespace in pkg-config-prog.


Revision 1.647 - (view) (download) (annotate) - [select for diffs]
Wed Jan 23 03:43:32 2008 UTC (17 years, 9 months ago) by mwolson
Branch: MAIN
Changes since 1.646: +7 -0 lines
Diff to previous 1.646
Rename EMACS_ARG_Y to OPTION_DEFAULT_OFF, and EMACS_ARG_N to OPTION_DEFAULT_ON.


Revision 1.646 - (view) (download) (annotate) - [select for diffs]
Tue Jan 22 23:53:45 2008 UTC (17 years, 9 months ago) by miles
Branch: MAIN
Changes since 1.645: +4 -0 lines
Diff to previous 1.645
Merge from emacs--rel--22

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1006


Revision 1.553.2.13 - (view) (download) (annotate) - [select for diffs]
Mon Jan 21 06:47:22 2008 UTC (17 years, 9 months ago) by dann
Branch: EMACS_22_BASE
Changes since 1.553.2.12: +4 -0 lines
Diff to previous 1.553.2.12 , to branch point 1.553
Updated from master source.


Revision 1.645 - (view) (download) (annotate) - [select for diffs]
Fri Jan 18 05:45:26 2008 UTC (17 years, 9 months ago) by gm
Branch: MAIN
Changes since 1.644: +1 -2 lines
Diff to previous 1.644
Present tense.


Revision 1.644 - (view) (download) (annotate) - [select for diffs]
Thu Jan 17 11:42:54 2008 UTC (17 years, 9 months ago) by schwab
Branch: MAIN
Changes since 1.643: +5 -0 lines
Diff to previous 1.643
*** empty log message ***


Revision 1.643 - (view) (download) (annotate) - [select for diffs]
Thu Jan 17 04:10:08 2008 UTC (17 years, 9 months ago) by gm
Branch: MAIN
Changes since 1.642: +4 -0 lines
Diff to previous 1.642
*** empty log message ***


Revision 1.553.2.12 - (view) (download) (annotate) - [select for diffs]
Thu Jan 17 04:06:38 2008 UTC (17 years, 9 months ago) by gm
Branch: EMACS_22_BASE
Changes since 1.553.2.11: +4 -0 lines
Diff to previous 1.553.2.11 , to branch point 1.553
*** empty log message ***


Revision 1.642 - (view) (download) (annotate) - [select for diffs]
Wed Jan 16 16:29:00 2008 UTC (17 years, 9 months ago) by dann
Branch: MAIN
Changes since 1.641: +4 -0 lines
Diff to previous 1.641
* configure.in: Remove more references to unsupported systems.

* s/irix3-3.h:
* s/irix4-0.h:
* s/386-ix.h:
* s/domain.h:
* s/hpux9-x11r4.h:
* s/hpux9shxr4.h: Remove files for systems no longer supported.

* sysdep.c: Remove code containing references to symbols defined
by unsupported systems.


Revision 1.641 - (view) (download) (annotate) - [select for diffs]
Wed Jan 16 04:33:32 2008 UTC (17 years, 9 months ago) by gm
Branch: MAIN
Changes since 1.640: +4 -0 lines
Diff to previous 1.640
*** empty log message ***


Revision 1.640 - (view) (download) (annotate) - [select for diffs]
Wed Jan 16 04:09:52 2008 UTC (17 years, 9 months ago) by gm
Branch: MAIN
Changes since 1.639: +5 -0 lines
Diff to previous 1.639
*** empty log message ***


Revision 1.639 - (view) (download) (annotate) - [select for diffs]
Sun Jan 13 18:29:53 2008 UTC (17 years, 9 months ago) by dann
Branch: MAIN
Changes since 1.638: +4 -0 lines
Diff to previous 1.638
* configure.in: Remove more references to unsupported systems.

* m/sequent-ptx.h:
* m/sequent.h:
* s/ptx.h:
* s/ptx4-2.h:
* s/ptx4.h: Remove files for systems no longer supported.


Revision 1.260.2.95 - (view) (download) (annotate) - [select for diffs]
Wed Jan 9 11:18:38 2008 UTC (17 years, 9 months ago) by miles
Branch: lexbind
Changes since 1.260.2.94: +33 -9 lines
Diff to previous 1.260.2.94 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-69


Revision 1.340.2.87 - (view) (download) (annotate) - [select for diffs]
Wed Jan 9 01:20:36 2008 UTC (17 years, 9 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.86: +33 -9 lines
Diff to previous 1.340.2.86 , to branch point 1.340
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-312


Revision 1.638 - (view) (download) (annotate) - [select for diffs]
Tue Jan 8 20:46:40 2008 UTC (17 years, 9 months ago) by miles
Branch: MAIN
Changes since 1.637: +1 -1 lines
Diff to previous 1.637
Merge from emacs--rel--22

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-987


Revision 1.637 - (view) (download) (annotate) - [select for diffs]
Mon Jan 7 13:07:09 2008 UTC (17 years, 9 months ago) by lektu
Branch: MAIN
Changes since 1.636: +5 -8 lines
Diff to previous 1.636
*** empty log message ***


Revision 1.553.2.11 - (view) (download) (annotate) - [select for diffs]
Mon Jan 7 08:53:19 2008 UTC (17 years, 9 months ago) by gm
Branch: EMACS_22_BASE
Changes since 1.553.2.10: +1 -1 lines
Diff to previous 1.553.2.10 , to branch point 1.553
Add 2008 to copyright years.


Revision 1.636 - (view) (download) (annotate) - [select for diffs]
Sun Jan 6 11:49:25 2008 UTC (17 years, 9 months ago) by rfrancoise
Branch: MAIN
Changes since 1.635: +4 -0 lines
Diff to previous 1.635
Delete extra semicolons.


Revision 1.635 - (view) (download) (annotate) - [select for diffs]
Sun Jan 6 00:56:56 2008 UTC (17 years, 9 months ago) by dann
Branch: MAIN
Changes since 1.634: +4 -0 lines
Diff to previous 1.634
* configure.in: Remove references to unsupported systems.

* notes/copyright:
* MAINTAINERS: Remove references to files that have been removed.

* os.texi (System Environment): Remove references to OSes that are
not supported anymore.

* PROBLEMS:
* MACHINES: Remove references to systems not supported anymore.

* makefile.w32-in:
* Makefile.in: Remove references to Xenix.

* gnus.el (gnus-use-long-file-name): Remove reference to xenix.

* obsolete/x-apollo.el: Remove file for unsupported system.

* term/x-win.el (vendor-specific-keysyms): Remove reference to
Apollo.

* progmodes/gud.el (gud-dgux-p): Remove.
(dbx): Remove reference to dgux.

* progmodes/ps-mode.el (ps-mode-print-function):
* ps-print.el (ps-lp-system):
* paths.el (rmail-spool-directory):
* ls-lisp.el (ls-lisp-emulation):
* lpr.el (lpr-lp-system):
* dired.el (dired-chown-program): Remove references to dgux.

* m/7300.h:
* m/acorn.h:
* m/alliant-2800.h:
* m/alliant.h:
* m/alliant1.h:
* m/alliant4.h:
* m/altos.h:
* m/amdahl.h:
* m/apollo.h:
* m/att3b.h:
* m/aviion-intel.h:
* m/aviion.h:
* m/celerity.h:
* m/clipper.h:
* m/cnvrgnt.h:
* m/convex.h:
* m/cydra5.h:
* m/delta88k.h:
* m/dpx2.h:
* m/dual.h:
* m/elxsi.h:
* m/f301.h:
* m/gould-np1.h:
* m/gould.h:
* m/i860.h:
* m/ibmps2-aix.h:
* m/ibmrt-aix.h:
* m/ibmrt.h:
* m/irist.h:
* m/is386.h:
* m/isi-ov.h:
* m/mega68.h:
* m/mg1.h:
* m/news-r6.h:
* m/news-risc.h:
* m/news.h:
* m/nh3000.h:
* m/nh4000.h:
* m/ns16000.h:
* m/ns32000.h:
* m/nu.h:
* m/orion.h:
* m/orion105.h:
* m/paragon.h:
* m/pfa50.h:
* m/plexus.h:
* m/pyramid.h:
* m/pyrmips.h:
* m/sh3el.h:
* m/sps7.h:
* m/sr2k.h:
* m/stride.h:
* m/sun1.h:
* m/sun2.h:
* m/sun3-68881.h:
* m/sun3-fpa.h:
* m/sun3-soft.h:
* m/sun3.h:
* m/sun386.h:
* m/symmetry.h:
* m/tad68k.h:
* m/tahoe.h:
* m/targon31.h:
* m/tek4300.h:
* m/tekxd88.h:
* m/tower32.h:
* m/tower32v3.h:
* m/ustation.h:
* m/wicat.h:
* m/xps100.h:
* s/cxux.h:
* s/cxux7.h:
* s/dgux.h:
* s/dgux4.h:
* s/dgux5-4-3.h:
* s/dgux5-4r2.h:
* s/esix.h:
* s/esix5r4.h:
* s/hiuxmpp.h:
* s/hiuxwe2.h:
* s/iris3-5.h:
* s/iris3-6.h:
* s/isc2-2.h:
* s/isc3-0.h:
* s/isc4-0.h:
* s/isc4-1.h:
* s/newsos5.h:
* s/newsos6.h:
* s/osf1.h:
* s/osf5-0.h:
* s/riscix1-1.h:
* s/riscix12.h:
* s/sco4.h:
* s/sco5.h:
* s/sunos4-0.h:
* s/sunos4-1.h:
* s/sunos413.h:
* s/sunos4shr.h:
* s/umax.h:
* s/unipl5-2.h:
* s/xenix.h:
* cxux-crt0.s:
* unexapollo.c:
* unexconvex.c:
* unexenix.c:
* unexsni.c: Remove files for systems no longer supported.

* m/intel386.h: Remove references to unsupported systems.

* w32.c (get_emacs_configuration): Remove reference to i860.

* sysdep.c: Remove dead code.


Revision 1.634 - (view) (download) (annotate) - [select for diffs]
Sat Jan 5 13:26:33 2008 UTC (17 years, 9 months ago) by rfrancoise
Branch: MAIN
Changes since 1.633: +4 -0 lines
Diff to previous 1.633
Add --bzip2.  Update copyright.


Revision 1.633 - (view) (download) (annotate) - [select for diffs]
Sat Jan 5 11:14:48 2008 UTC (17 years, 9 months ago) by dann
Branch: MAIN
Changes since 1.632: +4 -0 lines
Diff to previous 1.632
* configure.in: Remove support for Masscomp.

* os.texi (System Environment): Remove mention for Masscomp.

* MACHINES: Remove Masscomp.

* s/rtu.h:
* m/masscomp.h: Remove files. Platform is obsolete.


Revision 1.632 - (view) (download) (annotate) - [select for diffs]
Sat Jan 5 04:15:11 2008 UTC (17 years, 9 months ago) by gm
Branch: MAIN
Changes since 1.631: +7 -0 lines
Diff to previous 1.631
*** empty log message ***


Revision 1.631 - (view) (download) (annotate) - [select for diffs]
Fri Jan 4 16:31:44 2008 UTC (17 years, 9 months ago) by gm
Branch: MAIN
Changes since 1.630: +4 -0 lines
Diff to previous 1.630
*** empty log message ***


Revision 1.260.2.94 - (view) (download) (annotate) - [select for diffs]
Sun Dec 16 05:12:01 2007 UTC (17 years, 10 months ago) by miles
Branch: lexbind
Changes since 1.260.2.93: +4 -0 lines
Diff to previous 1.260.2.93 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-65


Revision 1.340.2.86 - (view) (download) (annotate) - [select for diffs]
Sun Dec 16 05:08:44 2007 UTC (17 years, 10 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.85: +4 -0 lines
Diff to previous 1.340.2.85 , to branch point 1.340
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-300


Revision 1.630 - (view) (download) (annotate) - [select for diffs]
Sun Dec 9 11:08:55 2007 UTC (17 years, 10 months ago) by schwab
Branch: MAIN
Changes since 1.629: +4 -0 lines
Diff to previous 1.629
*** empty log message ***


Revision 1.260.2.93 - (view) (download) (annotate) - [select for diffs]
Thu Dec 6 23:43:14 2007 UTC (17 years, 10 months ago) by miles
Branch: lexbind
Changes since 1.260.2.92: +90 -0 lines
Diff to previous 1.260.2.92 , to branch point 1.260
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-63


Revision 1.340.2.85 - (view) (download) (annotate) - [select for diffs]
Thu Dec 6 09:51:23 2007 UTC (17 years, 10 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.84: +65 -0 lines
Diff to previous 1.340.2.84 , to branch point 1.340
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-294


Revision 1.629 - (view) (download) (annotate) - [select for diffs]
Thu Dec 6 07:06:50 2007 UTC (17 years, 10 months ago) by jhd
Branch: MAIN
Changes since 1.628: +5 -0 lines
Diff to previous 1.628
*** empty log message ***


Revision 1.628 - (view) (download) (annotate) - [select for diffs]
Tue Dec 4 11:29:17 2007 UTC (17 years, 10 months ago) by jhd
Branch: MAIN
Changes since 1.627: +4 -0 lines
Diff to previous 1.627
*** empty log message ***


Revision 1.627 - (view) (download) (annotate) - [select for diffs]
Mon Dec 3 22:04:33 2007 UTC (17 years, 10 months ago) by legoscia
Branch: MAIN
Changes since 1.626: +6 -0 lines
Diff to previous 1.626
*** empty log message ***


Revision 1.626 - (view) (download) (annotate) - [select for diffs]
Mon Dec 3 06:54:19 2007 UTC (17 years, 10 months ago) by albinus
Branch: MAIN
Changes since 1.625: +8 -0 lines
Diff to previous 1.625
* configure.in: No need for DBUS_INFO anymore.

* configure: Regenerate.

* Makefile.in (INFO_FILES): Use dbus unconditionally.


Revision 1.625 - (view) (download) (annotate) - [select for diffs]
Sun Dec 2 15:45:58 2007 UTC (17 years, 10 months ago) by albinus
Branch: MAIN
Changes since 1.624: +8 -0 lines
Diff to previous 1.624
* configure.in: Add D-Bus checks.  D-Bus is disabled by default.

* configure: Regenerate.

* Makefile.in (INFO_FILES): Add dbus.


Revision 1.624 - (view) (download) (annotate) - [select for diffs]
Sun Dec 2 11:19:38 2007 UTC (17 years, 10 months ago) by rfrancoise
Branch: MAIN
Changes since 1.623: +4 -0 lines
Diff to previous 1.623
Fix last change.


Revision 1.623 - (view) (download) (annotate) - [select for diffs]
Wed Nov 28 08:21:37 2007 UTC (17 years, 11 months ago) by gm
Branch: MAIN
Changes since 1.622: +4 -0 lines
Diff to previous 1.622
*** empty log message ***


Revision 1.553.2.10 - (view) (download) (annotate) - [select for diffs]
Wed Nov 28 08:21:16 2007 UTC (17 years, 11 months ago) by gm
Branch: EMACS_22_BASE
Changes since 1.553.2.9: +4 -0 lines
Diff to previous 1.553.2.9 , to branch point 1.553
*** empty log message ***


Revision 1.622 - (view) (download) (annotate) - [select for diffs]
Wed Nov 28 05:02:55 2007 UTC (17 years, 11 months ago) by gm
Branch: MAIN
Changes since 1.621: +4 -0 lines
Diff to previous 1.621
*** empty log message ***


Revision 1.621 - (view) (download) (annotate) - [select for diffs]
Sat Nov 24 14:02:37 2007 UTC (17 years, 11 months ago) by rfrancoise
Branch: MAIN
Changes since 1.620: +4 -0 lines
Diff to previous 1.620
(INFO_FILES): Add nxml-mode.


Revision 1.620 - (view) (download) (annotate) - [select for diffs]
Fri Nov 23 18:06:58 2007 UTC (17 years, 11 months ago) by rfrancoise
Branch: MAIN
Changes since 1.619: +5 -0 lines
Diff to previous 1.619
Include nXML.  Don't try to copy FTP, it was removed on 2007/10/17.
Don't special-case alloca.c which is no longer in CVS.


Revision 1.619 - (view) (download) (annotate) - [select for diffs]
Tue Nov 20 23:08:26 2007 UTC (17 years, 11 months ago) by schwab
Branch: MAIN
Changes since 1.618: +5 -0 lines
Diff to previous 1.618
*** empty log message ***


Revision 1.618 - (view) (download) (annotate) - [select for diffs]
Sat Nov 17 12:02:32 2007 UTC (17 years, 11 months ago) by schwab
Branch: MAIN
Changes since 1.617: +4 -0 lines
Diff to previous 1.617
*** empty log message ***


Revision 1.617 - (view) (download) (annotate) - [select for diffs]
Sat Nov 17 03:50:53 2007 UTC (17 years, 11 months ago) by gm
Branch: MAIN
Changes since 1.616: +4 -0 lines
Diff to previous 1.616
*** empty log message ***


Revision 1.340.2.84 - (view) (download) (annotate) - [select for diffs]
Sun Nov 11 00:56:16 2007 UTC (17 years, 11 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.83: +25 -0 lines
Diff to previous 1.340.2.83 , to branch point 1.340
Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-283


Revision 1.616 - (view) (download) (annotate) - [select for diffs]
Wed Nov 7 04:00:02 2007 UTC (17 years, 11 months ago) by gm
Branch: MAIN
Changes since 1.615: +4 -0 lines
Diff to previous 1.615
*** empty log message ***


Revision 1.615 - (view) (download) (annotate) - [select for diffs]
Fri Nov 2 16:01:20 2007 UTC (17 years, 11 months ago) by lektu
Branch: MAIN
Changes since 1.614: +0 -24 lines
Diff to previous 1.614
*** empty log message ***


Revision 1.614 - (view) (download) (annotate) - [select for diffs]
Fri Nov 2 06:03:12 2007 UTC (17 years, 11 months ago) by kifer
Branch: MAIN
Changes since 1.613: +24 -0 lines
Diff to previous 1.613
2007-11-02  Michael Kifer  <kifer@cs.stonybrook.edu>

	* viper-ex.el (viper-ex): do not ignore the region.

	* viper-cmd.el (viper-prev-destructive-command)
	(viper-insert-prev-from-insertion-ring): use ring-copy instead of
	copy-sequence.

	* ediff-util.el (ediff-make-current-diff-overlay): do not use face-name.
	Got rid of ediff-copy-list.

	* ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer): do not
	use face-name.
	(ediff-test-utility,ediff-diff-mandatory-option)
	(ediff-reset-diff-options): removed to simplify yhe mandatory option
	handling on windows.
	(ediff-set-diff-options): added.
	(ediff-diff-options): changed.

	* ediff-vers.el (ediff-vc-internal): use ediff-vc-revision-other-window.
	(ediff-vc-merge-internal): use ediff-vc-revision-other-window and
	ediff-vc-working-revision.
	Require vc-hooks.


Revision 1.613 - (view) (download) (annotate) - [select for diffs]
Thu Nov 1 07:38:41 2007 UTC (17 years, 11 months ago) by jhd
Branch: MAIN
Changes since 1.612: +4 -0 lines
Diff to previous 1.612
*** empty log message ***


Revision 1.612 - (view) (download) (annotate) - [select for diffs]
Wed Oct 31 03:19:19 2007 UTC (18 years ago) by gm
Branch: MAIN
Changes since 1.611: +5 -0 lines
Diff to previous 1.611
*** empty log message ***


Revision 1.611 - (view) (download) (annotate) - [select for diffs]
Tue Oct 30 06:22:21 2007 UTC (18 years ago) by gm
Branch: MAIN
Changes since 1.610: +4 -0 lines
Diff to previous 1.610
*** empty log message ***


Revision 1.610 - (view) (download) (annotate) - [select for diffs]
Tue Oct 30 01:44:17 2007 UTC (18 years ago) by mwolson
Branch: MAIN
Changes since 1.609: +4 -0 lines
Diff to previous 1.609
Makefile.in (INFO_FILES): Alphabetize; add remember


Revision 1.609 - (view) (download) (annotate) - [select for diffs]
Mon Oct 29 07:49:34 2007 UTC (18 years ago) by gm
Branch: MAIN
Changes since 1.608: +4 -0 lines
Diff to previous 1.608
*** empty log message ***


Revision 1.260.2.92 - (view) (download) (annotate) - [select for diffs]
Sat Oct 27 10:00:08 2007 UTC (18 years ago) by miles
Branch: lexbind
Changes since 1.260.2.91: +14 -14 lines
Diff to previous 1.260.2.91 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 902-908)

   - Update from CVS
   - Merge from emacs--rel--22

 * emacs--rel--22  (patch 131-137)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 261-262)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-62


Revision 1.260.2.91 - (view) (download) (annotate) - [select for diffs]
Sat Oct 27 09:58:16 2007 UTC (18 years ago) by miles
Branch: lexbind
Changes since 1.260.2.90: +9 -0 lines
Diff to previous 1.260.2.90 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 890-898)

   - Update from CVS
   - Merge from emacs--rel--22

 * emacs--rel--22  (patch 122-128)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 257-258)

   - Merge from emacs--rel--22
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-59


Revision 1.260.2.90 - (view) (download) (annotate) - [select for diffs]
Sat Oct 27 09:52:01 2007 UTC (18 years ago) by miles
Branch: lexbind
Changes since 1.260.2.89: +97 -0 lines
Diff to previous 1.260.2.89 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 866-889)

   - Merge multi-tty branch
   - Update from CVS
   - Merge from emacs--rel--22
   - Add missing change from rel-22 branch to src/image.c
   - Remove RCS keywords from doc/misc/cc-mode.texi
   - Remove man, lispref, and lispintro directories

 * emacs--multi-tty--0  (base, patch 1-45)

   - tag of emacs@sv.gnu.org/emacs--devo--0--patch-743
   - Merge from lorentey@elte.hu--2004
   - Remove out-of-date meta-files
   - Tweak perms to be more like emacs--devo--0
   - Restore lispref/elisp-covers.texi
   - Sync with sealing patch in lorentey@elte.hu.
   - Rudimentary fix for environment variable handling.
   - Update from CVS
   - server.el: Don't change the default directory in the *scratch* buffer.
   - Merged from emacs--devo--0
   - Revert to official bug report addresses.
   - Merge from emacs--devo--0
   - Import changelog info from arch logs into ChangeLog.multi-tty files
   - Update from CVS: src/puresize.h (BASE_PURESIZE): Increase.
   - Restore original arch-tag in src/ChangeLog.multi-tty

 * emacs--rel--22  (patch 101-121)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 248-256)

   - Merge from emacs--devo--0
   - Update from CVS
   - Update from CVS: texi/gnus.texi (On Writing Manuals): Fix typos.
   - Revert refcard location changes

 * lorentey@elte.hu--2004/emacs--cvs-trunk--0  (base, patch 1-7)

   - tag of miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-474
   - Add CVS metadata files.
   - Update from CVS.
   - Update from CVS
   - Sync with miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-539.

 * lorentey@elte.hu--2004/emacs--cvs-trunk--0-  (version 0)

   - Branch closed.  Use miles@gnu.org--gnu-2005/emacs--cvs-trunk--0 instead.

 * lorentey@elte.hu--2004/emacs--multi-tty--0  (base, patch 1-4)

   - tag of miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-137
   - Add a level of indirection to terminal characteristics.
   - Implemented multiple tty support.
   - Updating_frame vs. selected_frame in term.c.
   - Added a pointer to my archive to README.multi-tty
 * lorentey@elte.hu--2004/emacs--multi-tty--0--patch-5

 * lorentey@elte.hu--2004/emacs--multi-tty--0  (patch 6-223, 225-257)

   - Removed two files that were committed by mistake.
   - Fixed two typos.
   - Full support for multiple terminal I/O (with some rough edges).
   - Fully eliminated global tty state variables.
   - Cosmetic changes in README.multi-tty
   - Added compilation instructions to README.multi-tty.
   - Implemented automatic deletion of terminals.
   - README.multi-tty updates.
   - Small change in README.multi-tty
   - Merged in changes from CVS HEAD
   - Joined miles@gnu.org--gnu-2004/emacs--cvs-trunk--0
   - Trivial changes
   - Bugfix festival.
   - Handle Ctl-G in emacsclient.
   - Make sure secondary frames are deleted when emacsclient quits.
   - Merged in changes from CVS head
   - Don't compile sys_select on systems that don't need it.
   - Delete server frames on server restart.
   - Undo patch-23.  I need a coffee.
   - Major bugfixes and slight enhancements.
   - A few more bugfixes and new features.
   - Separate frame-local, tty-dependent parameters from tty-local parameters.
   - Fixed X support, preliminary support for X-tty combo sessions.
   - MULTI_KBOARD support for ttys.  Input-related bugfixes for X+tty sessions.
   - Got rid of the rif (window-based redisplay interface) global variable.
   - Fix longopts option name for --tty.
   - Portability fixes (now it compiles & runs fine on Solaris).
   - Added multi-tty support for talk.el.
   - Fixed typo in talk.el.
   - Fixed typo in talk.el (again).
   - Fix mouse-position for tty+X combo sessions.
   - Add "multi-tty" to emacs-version output.
   - Fix more SEGV cases in frame.c
   - Converted display hooks to be display-local.  Plus many bugfixes.
   - Fix SEGV in init_sys_modes during X startup
   - Hookified termcap devices, added bootstrap display device, plus many
     bugfixes.
   - Numerous bugfixes and small improvements.
   - Changed tty input code to use read_socket_hook.
   - Fix C-g handling with multiple ttys.
   - Don't select on stdin unconditionally.
   - Support for opening X frames from a tty session.
   - Fix initialization of the window-system variable.
   - Romain Francoise's and Ami Fischman's bugfixes.
   - Added note about the commit mailing list.
   - Fixed tty faces during combo sessions.  Plus other assorted bugfixes.
   - Set the keyboard of the initial frame correctly.
   - Fixed interactive temacs.
   - Removed %T in mode-line-format.  Trivial documentation changes.
   - Fixed unsafe and incorrect use of record_unwind_protect in Fsuspend_emacs.
   - Cosmetic changes.
   - Don't exit Emacs when the X display is closed during a tty-X combo session.
   - Prevent core dumps when the X server crashes.
   - Fix the case when emacsclient is run on Emacs's controlling tty.
   - Trivial fixes to shut up some of the compiler warnings.
   - Don't hang on the tty if called from a shell script.
   - Fixed a typo in README.multi-tty.
   - Added newly loaded stuff in loadup.el to src/Makefile.in.
   - Don't try to init X drag and drop on a termcap frame.
   - Fix list-colors-display and other functions on a termcap frame
   - Added -w option to emacsclient for opening a new X frame.
   - Verify the version of Emacsclient.
   - Changed emacsclient to open new frames by default.
   - README updates.
   - Don't read too many characters from the tty.
   - Don't delete a tty if it's the last device with frames.
   - Fix typo in delete_display_hook documentation.
   - Fix a crash in emacsclient when DISPLAY is unset.
   - Block more input during read_avail_input.
   - Allow tty_read_avail_input to use the whole input buffer.
   - Don't try to handle a new event if the input buffer is full.
   - Back out previous change, it causes infinite recursion.
   - Revert patch-93, that was the real culprit.  Reapply patch-97.
   - Check for numchars > 0 in handle_one_xevent, not 1.
   - (Sigh.) Don't try to read more events than the buffer size.
   - Make emacsclient refuse to create a frame inside an Emacs term buffer.
   - Implemented suspending of emacsclient frames.
   - Added *.rej to tla's unrecognized pattern.
   - Fix background-mode on terminal frames (Dan Nicolaescu).
   - Fixed compiler warnings for keyboard.c.
   - Trivial cleanups to get rid of GCC warnings.
   - Trivial cleanup in fringe.c, missing from previous patch.
   - Removed *.rej from backup pattern in tagging method.
   - Fix cut'n'paste during a multi-display session (Mark Plaksin, Robert
     Chassell).
   - Fix dropping of the controlling tty on Solaris (Dan Nicolaescu).
   - Fix bootstrap problems in CVS.
   - Fix initialization order at bootstrap (Dan Nicolaescu).
   - Trivial cosmetic change in dispnew.c.
   - Prevent Lisp nesting errors while bootstrapping.
   - Fix #include errors for FreeBSD (Frank Ruell)
   - Merged in changes from CVS trunk
   - README changes.
   - Merged in changes from CVS trunk.
   - Eliminated updating_frame.
   - Fix segfault in term.c (reported by lukhas@free.fr).
   - Another server.el overhaul.
   - Fix frame parameter handling in server.el.
   - In emacsclient, protect the xmitted string from fprintf expansion (Dan
     Nicolaescu).
   - Fix error on deleting an emacsclient terminal (Dan Nicolaescu).
   - Fix one more case of the previous error.
   - A simple implementation for display-local frame parameters.
   - Mention `tla replay' in README.multi-tty (Gaute Strokkenes).
   - Fixed environment variable handling during terminal initialization.
   - Added branch description to admin/notes/BRANCH.
   - Fix fatal error during startup (rep. by Friedrich Delgado Friedrichs)
   - Add kludge to prevent overriding keyboard-coding-system customization.
   - Make terminal_coding and keyboard_coding display-local.
   - New control structure: with-selected-frame.
   - Use with-selected-frame.
   - Fix environment variables on emacsclient frames.
   - Use the remote locale for terminal & keyboard coding system.
   - Update README.multi-tty.
   - Fix server-socket-dir initialization (rep. by Friedrich Delgado
     Friedrichs).
   - Fix terminal coding system in multibyte locales (rep. by Friedrich
     Delgado Friedrichs).
   - Fix background mode initialization on client tty frames (rep. by Dan
     Nicolaescu).
   - Fix window-system-default-frame-alist (ARISAWA Akihiro).
   - Don't ignore SIGWINCH under X (contributed by Yoshiaki Kasahara).
   - Make sure the SIGWINCH handler is always set (rep. by Yoshiaki Kasahara).
   - Fix SEGV on terminals without 'IC' capability (Yoshiaki Kasahara).
   - README.multi-tty update.
   - Clear single_kboard each time Emacs returns to top-level.
   - Don't core dump on SIGINT when there is no frame on the controlling tty.
   - Dissociate from the controlling tty correctly on FreeBSD.
   - Make server-start safe against accidental restarts.
   - Fix parse error in term.c (ARISAWA Akihiro).
   - Fix byte-compile errors during bootstrap.  (Reported by Juraj Kubelka.)
   - Fix --no-wait in emacsclient (reported by Dan Nicolaescu).
   - Reapply src/Makefile.in changes that got lost in the tagline snafu of
     patch-197.
   - Implemented display ids for multiple emacsclients on the same tty.
     Plus assorted bugfixes.
   - Fix bootstrap errors.
   - Fixed C-c from the controlling terminal.
   - Don't leave buffers created by nowait clients buried under others
     (rep. by Dan Nicolaescu).
   - Fix suspend-frame on the controlling tty (reported by Dan Nicolaescu).
   - Fix Viper with simultaneous X and tty display devices. (Rep. by IRIE
     Tetsuya.)
   - Prevent the previous bug from reappearing later.
   - Fix creating frames on different X servers.
   - Cleaned up README compile & test instructions.
   - Updated archive location in docs. (Thanks to Dan Waber.)
   - README updates, including a new Tips & Tricks section
   - Change binding of C-x C-c to only exit emacsclient, not Emacs itself.
   - Fix typo in server.el (Han Boetes, Ted Morse, Ami Fischman)
   - Add TAGS-LISP to precious regex in src/.
   - Merged in changes from CVS trunk (Jan D. has fixed the XSync call in
     xterm.c, no need to disable it anymore).
   - Inhibit redisplay while frames are being deleted after an X disconnect.
   - Fix typo in src/Makefile.in.
   - Removed C99ism in init_fringe_bitmap.
   - Small tweaks in server.el.
   - Set ncurses-related environment variables while creating a new
 tty frame. (Reported by Dan Nicolaescu.)

 * lorentey@elte.hu--2004/emacs--multi-tty--0  (patch 258-292)

   - Merged in changes from CVS trunk.
   - Fix core dump in redisplay window. (Reported by Yoshiaki Kasahara.)
     Plus cleanups.
   - Fix bootstrap problem with --without-x.
   - Trivial documentation change in keyboard.c.
   - Remove remaining references to updating_frame.
   - Increase PURESIZE to handle the extra stuff recently added.
   - Trivial changes in x_create_tip_frame.
   - README update.
   - Joined Miles's 2005 Emacs branch.
   - Merged in changes from CVS trunk.  (Long time no see!) :-)
   - Fix bootstrap error in CVS.
   - Fix xassert-related bootstrap errors.
   - Add some new precious/backup patterns in src/.
   - Update =partner-versions.
   - Prevent emacsclient errors when Emacs is compiled without X support.
   - README updates. (Reported by Xavier Mallard)
   - Merged from miles@gnu.org--gnu-2005 (patch 76-78)
   - Fix typo in dispnew.c.
   - Merged from miles@gnu.org--gnu-2005 (patch 12-13, 79-90)
   - On C-x C-c, restrict `save-some-buffers' to the client's buffers.
     (Reported by Han Boetes.)
   - Fix compilation error with GTK, fix issues with double C-g on
     controlling tty.
  (Reported by Friedrich Delgado Friedrichs, Yoshiaki Kasahara.)

 * lorentey@elte.hu--2004/emacs--multi-tty--0  (patch 293-605)

   - Merged from miles@gnu.org--gnu-2005 (patch 91-94)
   - Initialize blink-cursor-mode consistently.
   - Merged from miles@gnu.org--gnu-2005 (patch 14-16, 95-106)
   - Merged from miles@gnu.org--gnu-2005 (patch 17-26, 107-116)
   - Fix line/column number positioning in emacsclient. (Reported by Han
     Boetes.)
   - Merged from miles@gnu.org--gnu-2005 (patch 117-118)
   - Merged from miles@gnu.org--gnu-2005 (patch 119)
   - Merged from miles@gnu.org--gnu-2005 (patch 27, 120-125)
   - Merged from miles@gnu.org--gnu-2005 (patch 28-30, 126-128)
   - Merged from miles@gnu.org--gnu-2005 (patch 31-33, 129-141)
   - Merged from miles@gnu.org--gnu-2005 (patch 34-36, 142-158)
   - Fix crash condition when an X server connection is broken. (Reported
     by Vincent Bernat.)
   - Declare Vinhibit_redisplay in xterm.c.
   - Don't abort with GTK when a tty is opened.
   - Merged from miles@gnu.org--gnu-2005 (patch 159)
   - Merged from miles@gnu.org--gnu-2005 (patch 160-161)
   - Merged from miles@gnu.org--gnu-2005 (patch 37-38, 162-182)
   - Merged from miles@gnu.org--gnu-2005 (patch 183)
   - Merged from miles@gnu.org--gnu-2005 (patch 39-44, 184-191)
   - Close the X connection when the last frame is deleted.
   - Fix stupid syntax errors in previous patch.
   - README updates.
   - Revert changes that were committed by mistake in the previous patch.
   - Merged from miles@gnu.org--gnu-2005 (patch 192-203)
   - Fix some superflous deviations from CVS, plus apply some cosmetics.
   - Fix yet another compilation error.
   - Merged from miles@gnu.org--gnu-2005 (patch 204-213)
   - Fix some aspects of X display shutdown.
   - Prevent core dump when connection is lost during frame creation.
   - README update. (Fix identifier names in emacs background preloader
     example.)
   - Fix error when creating tty clients.
   - Merged from miles@gnu.org--gnu-2005 (patch 45-55, 214-231)
   - Merged from miles@gnu.org--gnu-2005 (patch 56-58, 232-239)
   - Merged from miles@gnu.org--gnu-2005 (patch 59, 240-245)
   - Resolve crashes related to face aliases.
   - Merged from miles@gnu.org--gnu-2005 (patch 60-65, 246-265)
   - Fix bootstrap error during loadup.
   - Merged from miles@gnu.org--gnu-2005 (patch 66, 266-268)
   - Merged from miles@gnu.org--gnu-2005 (patch 269)
   - Merged from miles@gnu.org--gnu-2005 (patch 67, 270-278)
   - Fix describe-variable with frame-local variables.
   - I give up; attempt to fix annoying crashes by reverting xdisp.c
     changes in patch-328.
   - Merged from miles@gnu.org--gnu-2005 (patch 279-280)
   - Merged from miles@gnu.org--gnu-2005 (patch 281-285)
   - Fix exponential slowdowns on repeated tty frame creation.
   - Fix UTF-8 tty input when first frame is an X frame. Steps towards
     multiple tty locale support.
   - Fix typo in get_display.
   - Support for ttys with different character locale settings.
   - Merged from miles@gnu.org--gnu-2005 (patch 68, 286-291)
   - Merged from miles@gnu.org--gnu-2005 (patch 292-295)
   - Disable display type check in start_hourglass, and always set up the timer.
   - Merged from miles@gnu.org--gnu-2005 (patch 296-306)
   - Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
   - Merged from miles@gnu.org--gnu-2005 (patch 307-312)
   - Merged from miles@gnu.org--gnu-2005 (patch 69, 313-319)
   - Merged from miles@gnu.org--gnu-2005 (patch 70-73, 320-331)
   - Merged from miles@gnu.org--gnu-2005 (patch 74-79, 332-349)
   - Merged from miles@gnu.org--gnu-2005 (patch 80-82, 350-422)
   - Merged from miles@gnu.org--gnu-2005 (patch 423-434)
   - Merged from miles@gnu.org--gnu-2005 (patch 435-437)
   - Merged from miles@gnu.org--gnu-2005 (patch 438-440)
   - Merged from miles@gnu.org--gnu-2005 (patch 441-446)
   - Make function-key-map a terminal-local variable (move it inside the
     kboard struct).
   - Update Lisp code for a terminal-local `function-key-map'.
   - Make sure the terminfo function key sequences are set up in the
     correct function-key-map.
   - Work around mysterious breakage of arrow key recognition under screen
     (see first TODO in README).
   - Change key-translation-map to be terminal-local.
   - Merged from miles@gnu.org--gnu-2005 (patch 447-448)
   - Replace encoded-kbd-mode with display-specific
     encoded-kbd-setup-display. (Doesn't work yet.)
   - New version of ldefs-boot.el.
   - Cleanup: Move kboard fields from struct frame and device-specific
     descriptors to struct display.
   - New C function `push_display_kboard'.
   - Work around nondeterministic binding of terminal-local variables.
     (Fixes national character input on ttys.)
   - Use terminal-local-value to access function-key-map in terminal packages.
   - Speed up loading of term/xterm.el.
   - Speed up loading of term/xterm.el (Dan Nicolaescu).
   - Remove pointless conditional around key substitution block in
     term/xterm.el (Dan Nicolaescu)
   - Fix the original cause of the "arrow keys don't work on screen" bug.
   - Merged from miles@gnu.org--gnu-2005 (patch 83-87, 449-468)
   - Merged from miles@gnu.org--gnu-2005 (patch 469)
   - Implement rudimentary Lisp-level terminal parameters.
   - Small enhancements.
   - Handle and document that `delete-frame' may call functions in
     `delete-frame-functions' twice.
   - Merged from miles@gnu.org--gnu-2005 (patch 470-473)
   - Merged from miles@gnu.org--gnu-2005 (patch 474)
   - Fix compilation error in src/term.c.
   - At long last, fix annoying SELECTED_FRAME crashes after unexpected
     connection failures. Yay!
   - README update.
   - Rename term_init to init_tty.
   - Rename `struct display' to `struct device'. Update function, parameter
     and variable names accordingly.
   - Cosmetic changes in server.el.
   - Fix compilation error in select_frame_for_redisplay.
   - Rename function-key-map to local-function-key-map, and
     global-function-key-map to function-key-map. Same for
     key-translation-map.
   - Fix dumb error leading to national keys not working on ttys.
   - Fix broken emacsclient resume on Solaris (by Dan Nicolaescu).
   - Don't let window-system-default-frame-alist override parameters
     specified manually.
   - Work around crashes in X session management after normal shutdown of X
     server.
   - Apply patch from CVS trunk to fix recenter on ttys.
   - Add two pending bugs to README.multi-tty.
   - Merged in changes from CVS trunk.  Plus added lisp/term tweaks.
   - Fix syntax error in lisp/term/xterm.el.
   - Merged in changes from CVS trunk.  (Testing my own CVS gateway.)
   - Add =upstream-branch file for semi-automated merges.
   - Merged in changes from lorentey@elte.hu--2004/emacs--cvs-trunk--0
   - Fix terminal initialization code.  (Contributed by Dan Nicolaescu.)
   - Slightly refactor the terminal initialization code for simplicity.
   - Apply settings in `window-system-default-frame-alist' to the initial
     frame as well.
   - Prevent resource allocation explosion when C-x 5 2 is used on xterms.
   - Enforce the presence of `window-system' and `tty-type' frame
     parameters in all frames.
   - Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el.
     (Submitted by Dan Nicolaescu.)
   - Merged in changes from CVS trunk.
   - Fix bootstrap error.
   - Fix `emacsclient -ne '(+ 2 2)'' (reported by Han Boetes), and clean up
     some corner cases in Emacs server.
   - Fix `emacsclient +12 file' behaviour.  (Reported by Han Boetes.)
   - Make xt-mouse.el multi-tty-compatible.
   - Fix crashes in xdialog_show (and other places) with xterm-mouse-mode.
   - Make `emacsclient -n <filename>' open new X frames when possible.
     (Reported by Bas Kok.)
   - Don't let server-save-buffers-kill-display unexpectedly kill Emacs on
     --no-wait's X frames.
   - Set Emacs version number to 22.0.51 to allow parallel installations of
     CVS trunk and the multi-tty branch.
   - Fix crash after y-or-n-p prompt triggered by emacsclient. (Reported by
     Han Boetes, analysis by Kalle Olavi Niemitalo.)
   - Fix bootstrap error in keyboard.c.
   - Switch upstream to miles@gnu.org--gnu-2005/emacs--cvs-trunk--0.
   - Fix assertion on kboard->kbd_queue and other such crashes.
   - Merged from miles@gnu.org--gnu-2005 (patch 115, 540-542)
   - Merged from miles@gnu.org--gnu-2005 (patch 543)
   - Merged from miles@gnu.org--gnu-2005 (patch 116-117, 544-550)
   - Fix hardcoded stdout usage in term.c.  (Reported by Dan Nicolaescu.)
   - Merged from miles@gnu.org--gnu-2005 (patch 118-132, 551-577)
   - Merged from miles@gnu.org--gnu-2005 (patch 578-592)
   - Merged from miles@gnu.org--gnu-2005 (patch 593-595)
   - Merged from miles@gnu.org--gnu-2005 (patch 133-141, 596-609)
   - Fix Delete key on X by adapting normal-erase-is-backspace-mode for
     multi-tty. (Reported by Dan Waber and Dan Nicolaescu.)
   - Change the "pretest" bug report address to the multi-tty list.
   - Merged from miles@gnu.org--gnu-2005 (patch 610-614)
   - Doc update.
   - Change `keyboard-translate-table' to be terminal-local.
   - Don't try to rebind the `t' symbol.
   - Protect keyboard-translate-table from GC.
   - Fix semantics of terminal-local variables. Remove
     `terminal-local-value' hack.
   - Merged from miles@gnu.org--gnu-2005 (patch 142-148, 615-628)
   - Update frames-on-display-list to accept terminal id numbers.
   - Merged from miles@gnu.org--gnu-2005 (patch 149-151, 629-641)
   - Fix some of the bootstrap problems.
   - Increase puresize.  (Emacs needs 1205176 pure bytes now.)
   - Merged from miles@gnu.org--gnu-2005 (patch 152-156, 642-654)
   - Merged from miles@gnu.org--gnu-2005 (patch 655)
   - Increase PURESIZE yet again.
   - Store client's environment in terminal parameters, not server parameters.
   - Merged from miles@gnu.org--gnu-2005 (patch 656-658)
   - Merged from miles@gnu.org--gnu-2005 (patch 659-663)
   - Delete leftover id for "info/dir".
   - Fix "first non-ASCII character on new tty frames" problem.
   - Prevent core dumps with GTK by disabling secondary X connections there.
   - Work around Emacs crash on Konsole detach.  (Tom Schutzer-Weissmann)
   - Fix typo in previous commit.
   - Merged from miles@gnu.org--gnu-2005 (patch 169-173, 671-676)
   - Implement full support for frame-local `next-buffer' and `previous-buffer'.
   - Reimplement and extend support for terminal-local environment variables.
   - Don't let x_initialize break 8-bit input on ttys. (Reported by Joakim
     Verona.) Split `set-input-mode'.
   - Pull a bugfix from CVS to prevent problems with the Debian semantic
     package.
   - Fix compilation error during non-X builds.
   - Reimplement terminal parameters in C; clean up term.c, create terminal.c.
   - Implement automatic terminal-local environment variables via
     `local-environment-variables'.
   - Fix compilation errors in previous commit.
   - Merged from miles@gnu.org--gnu-2005 (patch 677)
   - Fix error during bootstrap.
   - Fix semantics of let-binding `process-environment'.
   - Initialize Vprocess_environment to nil.
   - Store local environment in frame (not terminal) parameters.
   - Merged from miles@gnu.org--gnu-2005 (patch 678-680)
   - Merged from miles@gnu.org--gnu-2005 (patch 681)
   - Update environment-related doc strings.
   - Rename `struct device' to `struct terminal'. Rename some
     terminal-related functions similarly.
   - Set `local-environment-variables' to t by default.
   - Show the splash screen on Emacsclient frames.  Show *scratch* by default.
   - Display "@" in mode-lines of Emacsclient frames.
   - Make sure `delete-frame-functions' can not prevent the frame from
     being deleted.
   - Fix crash in lookup_image on termcap frames.
   - Enhance splash screens to work better with emacsclient.
   - Fix splash screen loosing input events on Emacsclient frames.
   - Don't display the splash screen when no frame was created. (Fixes tty
     resume.)
   - (Hopefully) fix bootstrap error on OpenBSD.  (reported by Han Boetes)
   - Fix typo in docstring of `frame-with-environment'.
   - Cosmetic fixes in xfns.c.
   - Install workaround for "X protocol error: BadCursor (invalid Cursor
     parameter) on protocol request 2"
   - Make all frames created in an emacsclient session belong to that client.
   - Experimental change: don't restore kboard after temporary changes if
     Emacs wasn't in single kboard state.
   - Fix typo in `server-handle-delete-frame'; fix startup echo area message.
   - Fix last frame check in server.el.
   - Fix Delete keys under X (for good, this time).
   - Overhaul and simplify single_kboard API. Allow calls to
     `recursive-edit' in process filters. Small fixes.
   - Merged from miles@gnu.org--gnu-2005 (patch 682)
   - Fix abort() in read_key_sequence.
   - Remove group write permissions from all files.
   - Merged from miles@gnu.org--gnu-2005 (patch 683-684)
   - Fix C-g during `make-network-process'.  (Reported by Mark Plaksin.)
   - Merged from miles@gnu.org--gnu-2005 (patch 174-181, 685-690)
   - Merged from miles@gnu.org--gnu-2005 (patch 182-184, 691-699)
   - Merged from miles@gnu.org--gnu-2005 (patch 185-186, 700-703)
   - Fix bootstrap problem reported by Han Boetes.
   - Fix some bugs related to wrong_kboard_jmpbuf.
   - Eliminate wrong_kboard_jmpbuf.
   - Merged from miles@gnu.org--gnu-2005 (patch 187, 704)
   - Fix compilation error on older GCCs (reported by "mace").
   - Merged from
   - Fix bootstrapping problem.  (Reported by "mace".)
   - Merged from emacs@sv.gnu.org
   - Add explicit abort() when x_catch_errors_unwind is called by mistake.
   - Fix `emacsclient --eval '(progn (find-file "file")'' and the like.
     (Reported by Han Boetes.)
   - Fix permissions. (Reported by Han Boetes.)
   - Fix tty state problem after error in `set-quit-char'.
   - Fix compilation.
   - Fix `server-delete-client' behavior when the user quits `kill-buffer'.
     (Reported by Han Boetes.)
   - Increase puresize.
   - Fix bogus crash with -DENABLE_CHECKING.
   - Remove unused variable in read_key_sequence.
   - Fix GDB magic.
   - Fix segfault by `C-x 5 2' on the controlling tty. (Reported by Suresh
     Madhu.)
   - Fix ediff problems.  (Reported by Dan Nicolaescu.)
   - Fix compilation error in ediff-wind.el.  D'oh.
   - Fix bizarre syntax error, probably from a baz merge bug.
   - Let the Emacs server recognize `inhibit-startup-echo-area-message'.
     (Reported by Han Boetes.)
   - Set emacsbug.el's pretest address to the multi-tty list. (Reported by
     Richard Lewis.)
   - Fix toolbars on X frames when Emacs is started on a tty. (Reported by
     Richard Lewis.)
   - Fix tool-bar and menu-bar toggles in Show/Hide menu to reflect the
     state of the current frame.
   - Clean up tty device handling. Change name of controlling tty from nil
     to "/dev/tty".
   - Set `default-directory' in *scratch* to the current directory of
     emacsclient.
   - Fix compilation error on OpenBSD.  (Reported by Han Boetes.)
   - Fix OpenBSD compilation some more.  (Fix by Han Boetes.)
   - Fix delete key after C-x 5 2 on X.  (Catched by Dan Nicolaescu.)
   - Fix tooltip border color.
   - Fix previous commit.
   - (Attempt to) fix bootstrap error.
   - Fix typo in startup.el.
   - Fix `vc-annotate' under X.  (Reported by Dan Nicolaescu.)
   - Make `tty-display-color-p' follow its doc string. (Reported by Dan
     Nicolaescu.)
   - Fix stupid crash during startup.
   - Fix crashes in redisplay functions on suspended tty frames. (Reported
     by Dan Nicolaescu.)
   - Fix crashes in `delete-terminal' caused by recursive calls or X
     displays with live frames.
   - Don't load terminit files repeatedly. Also, don't call terminit
     functions more than once per terminal.
   - Fix and/or simplify terminal initialization files.
   - Fix C-x 5 2 on the controlling tty; fix some possible crash conditions
     and a memory leak.
   - Fix syntax errors in terminal initialization files.
   - Fix compilation error in lwlib/xlwmenu.c.
   - Rework environment variable support. (Reported by Kalle Olavi
     Niemitalo and Noah Friedman.)
   - Merged from emacs@sv.gnu.org.
   - Fix typo in lisp/term/xterm.el.
   - Let frames on new terminals inherit 'environment and 'client.
   - Fix x_catch_errors-related abort after X disconnects. (Reported by Dan
     Nicolaescu).
   - Fix F10 behaviour.  (Reported by Bernard Adrian.)
   - Remove superfluous properties from the mode-line-client indicator.
     (Reported by Kalle Olavi Niemitalo)
   - Fix various aborts in get_named_tty.  (Patch by Kalle Olavi Niemitalo)
   - Increase PURESIZE.
   - Fix obvious runtime errors after merge.
   - Regenerate lisp/ldefs-boot.el.
   - Merged from emacs@sv.gnu.org.  Last-minute emacsclient rewrites be damned!
   - Fix crash in window.c.
   - Fix various suspend-related bugs in emacsclient. (Report & patch by
     Dan Nicolaescu.)
   - Remove semantic.cache, fix tagging method.
   - Fix compilation errors.  Regenerate ldefs-boot.el.
   - Re-enable GTK multidisplay support.
   - Regenerate ldefs-boot, remove junk.
   - Fix compilation error with non-toolkit scrollbar.

 * lorentey@elte.hu--2004/emacs--multi-tty--0-  (version 0)

   - This branch is now closed. Work continues at
     emacs@sv.gnu.org/emacs--multi-tty--0.

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-56


Revision 1.260.2.89 - (view) (download) (annotate) - [select for diffs]
Sat Oct 27 09:43:34 2007 UTC (18 years ago) by miles
Branch: lexbind
Changes since 1.260.2.88: +20 -0 lines
Diff to previous 1.260.2.88 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 852-865)

   - Update from CVS
   - Merge from emacs--rel--22
   - Update from CVS: lisp/emacs-lisp/avl-tree.el: New file.
   - Remove RCS keywords

 * emacs--rel--22  (patch 93-100)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 245-247)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-55


Revision 1.260.2.88 - (view) (download) (annotate) - [select for diffs]
Sat Oct 27 09:39:34 2007 UTC (18 years ago) by miles
Branch: lexbind
Changes since 1.260.2.87: +12 -1 lines
Diff to previous 1.260.2.87 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 824-838)

   - Update from CVS
   - Merge from emacs--rel--22
   - Remove lisp/erc/erc-nicklist.el
   - Update some .arch-inventory files
   - Fix void function definition error in cus-edit.el
   - Restore lisp/emacs-lisp/cl-loaddefs.el

 * emacs--rel--22  (patch 70-83)

   - Update from CVS
   - Remove lisp/erc/erc-nicklist.el
   - Update some .arch-inventory files
   - Indicate that emacs--devo--0--patch-834 does not need to be applied
   - Merge from gnus--rel--5.10
   - Restore lisp/emacs-lisp/cl-loaddefs.el

 * gnus--rel--5.10  (patch 239-241)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-53


Revision 1.260.2.87 - (view) (download) (annotate) - [select for diffs]
Sat Oct 27 09:34:04 2007 UTC (18 years ago) by miles
Branch: lexbind
Changes since 1.260.2.86: +9 -5 lines
Diff to previous 1.260.2.86 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 803-815)

   - Update from CVS
   - Merge from emacs--rel--22

 * emacs--rel--22  (patch 51-58)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 233-236)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-51


Revision 1.340.2.83 - (view) (download) (annotate) - [select for diffs]
Sat Oct 27 09:11:25 2007 UTC (18 years ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.82: +14 -14 lines
Diff to previous 1.340.2.82 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 902-908)

   - Update from CVS
   - Merge from emacs--rel--22

 * emacs--rel--22  (patch 131-137)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 261-262)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-278


Revision 1.608 - (view) (download) (annotate) - [select for diffs]
Fri Oct 26 12:13:36 2007 UTC (18 years ago) by lektu
Branch: MAIN
Changes since 1.607: +9 -13 lines
Diff to previous 1.607
*** empty log message ***


Revision 1.607 - (view) (download) (annotate) - [select for diffs]
Thu Oct 25 22:12:04 2007 UTC (18 years ago) by lektu
Branch: MAIN
Changes since 1.606: +1 -1 lines
Diff to previous 1.606
*** empty log message ***


Revision 1.606 - (view) (download) (annotate) - [select for diffs]
Tue Oct 23 07:20:59 2007 UTC (18 years ago) by gm
Branch: MAIN
Changes since 1.605: +4 -0 lines
Diff to previous 1.605
*** empty log message ***


Revision 1.340.2.82 - (view) (download) (annotate) - [select for diffs]
Fri Oct 19 00:00:12 2007 UTC (18 years ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.81: +9 -0 lines
Diff to previous 1.340.2.81 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 890-898)

   - Update from CVS
   - Merge from emacs--rel--22

 * emacs--rel--22  (patch 122-128)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 257-258)

   - Merge from emacs--rel--22
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-270


Revision 1.605 - (view) (download) (annotate) - [select for diffs]
Wed Oct 17 15:52:53 2007 UTC (18 years ago) by cyd
Branch: MAIN
Changes since 1.604: +5 -0 lines
Diff to previous 1.604
* configure.in (HAVE_RES_INIT): Define if res_init() exists.
(HAVE_LIBRESOLV): Also define if we are using res_init().


Revision 1.604 - (view) (download) (annotate) - [select for diffs]
Wed Oct 17 01:39:18 2007 UTC (18 years ago) by gm
Branch: MAIN
Changes since 1.603: +4 -0 lines
Diff to previous 1.603
*** empty log message ***


Revision 1.340.2.81 - (view) (download) (annotate) - [select for diffs]
Thu Oct 11 16:12:38 2007 UTC (18 years ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.80: +97 -0 lines
Diff to previous 1.340.2.80 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 866-879)

   - Merge multi-tty branch
   - Update from CVS
   - Merge from emacs--rel--22

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-257


Revision 1.603 - (view) (download) (annotate) - [select for diffs]
Tue Oct 9 08:52:56 2007 UTC (18 years ago) by miles
Branch: MAIN
Changes since 1.602: +4 -0 lines
Diff to previous 1.602
Merge from emacs--rel--22

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-875


Revision 1.602 - (view) (download) (annotate) - [select for diffs]
Fri Oct 5 09:39:39 2007 UTC (18 years ago) by eliz
Branch: MAIN
Changes since 1.601: +5 -0 lines
Diff to previous 1.601
*** empty log message ***


Revision 1.553.2.9 - (view) (download) (annotate) - [select for diffs]
Sun Sep 16 09:13:16 2007 UTC (18 years, 1 month ago) by jhd
Branch: EMACS_22_BASE
Changes since 1.553.2.8: +4 -0 lines
Diff to previous 1.553.2.8 , to branch point 1.553
*** empty log message ***


Revision 1.601 - (view) (download) (annotate) - [select for diffs]
Sun Sep 16 02:26:29 2007 UTC (18 years, 1 month ago) by gm
Branch: MAIN
Changes since 1.600: +4 -0 lines
Diff to previous 1.600
*** empty log message ***


Revision 1.600 - (view) (download) (annotate) - [select for diffs]
Sat Sep 15 19:45:17 2007 UTC (18 years, 1 month ago) by gm
Branch: MAIN
Changes since 1.599: +4 -0 lines
Diff to previous 1.599
*** empty log message ***


Revision 1.599 - (view) (download) (annotate) - [select for diffs]
Wed Sep 12 07:03:18 2007 UTC (18 years, 1 month ago) by gm
Branch: MAIN
Changes since 1.598: +3 -0 lines
Diff to previous 1.598
*** empty log message ***


Revision 1.598 - (view) (download) (annotate) - [select for diffs]
Wed Sep 12 07:01:46 2007 UTC (18 years, 1 month ago) by gm
Branch: MAIN
Changes since 1.597: +1 -0 lines
Diff to previous 1.597
*** empty log message ***


Revision 1.597 - (view) (download) (annotate) - [select for diffs]
Wed Sep 12 06:55:36 2007 UTC (18 years, 1 month ago) by gm
Branch: MAIN
Changes since 1.596: +4 -0 lines
Diff to previous 1.596
*** empty log message ***


Revision 1.596 - (view) (download) (annotate) - [select for diffs]
Sun Sep 9 11:54:21 2007 UTC (18 years, 1 month ago) by jurta
Branch: MAIN
Changes since 1.595: +6 -0 lines
Diff to previous 1.595
*** empty log message ***


Revision 1.595 - (view) (download) (annotate) - [select for diffs]
Sat Sep 8 01:38:27 2007 UTC (18 years, 1 month ago) by mwolson
Branch: MAIN
Changes since 1.594: +1 -0 lines
Diff to previous 1.594
MAINTAINERS: Update for new doc/ directory layout


Revision 1.594 - (view) (download) (annotate) - [select for diffs]
Sat Sep 8 01:33:45 2007 UTC (18 years, 1 month ago) by mwolson
Branch: MAIN
Changes since 1.593: +4 -0 lines
Diff to previous 1.593
MAINTAINERS: Add myself for ERC and tq.el


Revision 1.593 - (view) (download) (annotate) - [select for diffs]
Thu Sep 6 18:41:46 2007 UTC (18 years, 1 month ago) by rfrancoise
Branch: MAIN
Changes since 1.592: +4 -0 lines
Diff to previous 1.592
Update for new doc/ directory layout.


Revision 1.592 - (view) (download) (annotate) - [select for diffs]
Thu Sep 6 05:12:28 2007 UTC (18 years, 1 month ago) by gm
Branch: MAIN
Changes since 1.591: +14 -0 lines
Diff to previous 1.591
*** empty log message ***


Revision 1.591 - (view) (download) (annotate) - [select for diffs]
Sun Sep 2 18:26:17 2007 UTC (18 years, 1 month ago) by schwab
Branch: MAIN
Changes since 1.590: +5 -0 lines
Diff to previous 1.590
*** empty log message ***


Revision 1.553.2.8 - (view) (download) (annotate) - [select for diffs]
Sun Sep 2 17:35:49 2007 UTC (18 years, 1 month ago) by jhd
Branch: EMACS_22_BASE
Changes since 1.553.2.7: +4 -0 lines
Diff to previous 1.553.2.7 , to branch point 1.553
*** empty log message ***


Revision 1.590 - (view) (download) (annotate) - [select for diffs]
Sun Sep 2 17:30:16 2007 UTC (18 years, 1 month ago) by jhd
Branch: MAIN
Changes since 1.589: +4 -0 lines
Diff to previous 1.589
*** empty log message ***


Revision 1.589 - (view) (download) (annotate) - [select for diffs]
Sun Sep 2 08:26:16 2007 UTC (18 years, 1 month ago) by ttn
Branch: MAIN
Changes since 1.588: +6 -0 lines
Diff to previous 1.588
*** empty log message ***


Revision 1.588 - (view) (download) (annotate) - [select for diffs]
Sat Sep 1 23:26:52 2007 UTC (18 years, 1 month ago) by schwab
Branch: MAIN
Changes since 1.587: +4 -0 lines
Diff to previous 1.587
*** empty log message ***


Revision 1.587 - (view) (download) (annotate) - [select for diffs]
Fri Aug 31 19:15:07 2007 UTC (18 years, 2 months ago) by ttn
Branch: MAIN
Changes since 1.586: +5 -0 lines
Diff to previous 1.586
*** empty log message ***


Revision 1.586 - (view) (download) (annotate) - [select for diffs]
Thu Aug 30 05:11:27 2007 UTC (18 years, 2 months ago) by gm
Branch: MAIN
Changes since 1.585: +6 -0 lines
Diff to previous 1.585
*** empty log message ***


Revision 1.585 - (view) (download) (annotate) - [select for diffs]
Thu Aug 30 05:08:24 2007 UTC (18 years, 2 months ago) by gm
Branch: MAIN
Changes since 1.584: +5 -0 lines
Diff to previous 1.584
*** empty log message ***


Revision 1.584 - (view) (download) (annotate) - [select for diffs]
Wed Aug 29 08:13:42 2007 UTC (18 years, 2 months ago) by gm
Branch: MAIN
Changes since 1.583: +4 -0 lines
Diff to previous 1.583
*** empty log message ***


Revision 1.583 - (view) (download) (annotate) - [select for diffs]
Wed Aug 29 06:36:44 2007 UTC (18 years, 2 months ago) by jhd
Branch: MAIN
Changes since 1.582: +4 -0 lines
Diff to previous 1.582
*** empty log message ***


Revision 1.340.2.80 - (view) (download) (annotate) - [select for diffs]
Wed Aug 29 05:03:30 2007 UTC (18 years, 2 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.79: +20 -0 lines
Diff to previous 1.340.2.79 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 857-865)

   - Update from CVS
   - Merge from emacs--rel--22
   - Update from CVS: lisp/emacs-lisp/avl-tree.el: New file.
   - Remove RCS keywords

 * emacs--rel--22  (patch 97-100)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 246-247)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-252


Revision 1.557.2.8 - (view) (download) (annotate) - [select for diffs]
Mon Aug 27 09:21:38 2007 UTC (18 years, 2 months ago) by miles
Branch: multi-tty
Changes since 1.557.2.7: +20 -0 lines
Diff to previous 1.557.2.7 , to branch point 1.557 , to next main 1.876
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 857-862)

   - Update from CVS
   - Merge from emacs--rel--22
   - Update from CVS: lisp/emacs-lisp/avl-tree.el: New file.

 * emacs--rel--22  (patch 97-100)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 246-247)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-38


Revision 1.582 - (view) (download) (annotate) - [select for diffs]
Fri Aug 24 02:58:29 2007 UTC (18 years, 2 months ago) by gm
Branch: MAIN
CVS Tags: before-merge-multi-tty-to-trunk, merge-multi-tty-to-trunk, multi-tty-base
Changes since 1.581: +4 -0 lines
Diff to previous 1.581
*** empty log message ***


Revision 1.581 - (view) (download) (annotate) - [select for diffs]
Thu Aug 23 20:02:54 2007 UTC (18 years, 2 months ago) by monnier
Branch: MAIN
Changes since 1.580: +4 -0 lines
Diff to previous 1.580
*** empty log message ***


Revision 1.580 - (view) (download) (annotate) - [select for diffs]
Thu Aug 23 08:44:20 2007 UTC (18 years, 2 months ago) by mituharu
Branch: MAIN
Changes since 1.579: +4 -0 lines
Diff to previous 1.579
*** empty log message ***


Revision 1.579 - (view) (download) (annotate) - [select for diffs]
Wed Aug 22 17:50:31 2007 UTC (18 years, 2 months ago) by rfrancoise
Branch: MAIN
Changes since 1.578: +4 -0 lines
Diff to previous 1.578
Follow reorganization of files in etc/.


Revision 1.578 - (view) (download) (annotate) - [select for diffs]
Wed Aug 22 03:56:03 2007 UTC (18 years, 2 months ago) by gm
Branch: MAIN
Changes since 1.577: +4 -0 lines
Diff to previous 1.577
*** empty log message ***


Revision 1.340.2.79 - (view) (download) (annotate) - [select for diffs]
Fri Aug 3 05:20:47 2007 UTC (18 years, 2 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.78: +6 -1 lines
Diff to previous 1.340.2.78 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 832-838)

   - Remove lisp/erc/erc-nicklist.el
   - Update some .arch-inventory files
   - Fix void function definition error in cus-edit.el
   - Update from CVS
   - Restore lisp/emacs-lisp/cl-loaddefs.el
   - Merge from emacs--rel--22

 * emacs--rel--22  (patch 75-83)

   - Update from CVS
   - Remove lisp/erc/erc-nicklist.el
   - Update some .arch-inventory files
   - Indicate that emacs--devo--0--patch-834 does not need to be applied
   - Merge from gnus--rel--5.10
   - Restore lisp/emacs-lisp/cl-loaddefs.el

 * gnus--rel--5.10  (patch 239-241)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-239


Revision 1.557.2.7 - (view) (download) (annotate) - [select for diffs]
Tue Jul 31 05:50:17 2007 UTC (18 years, 3 months ago) by miles
Branch: multi-tty
Changes since 1.557.2.6: +12 -1 lines
Diff to previous 1.557.2.6 , to branch point 1.557
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 824-838)

   - Update from CVS
   - Merge from emacs--rel--22
   - Remove lisp/erc/erc-nicklist.el
   - Update some .arch-inventory files
   - Fix void function definition error in cus-edit.el
   - Restore lisp/emacs-lisp/cl-loaddefs.el

 * emacs--rel--22  (patch 70-83)

   - Update from CVS
   - Remove lisp/erc/erc-nicklist.el
   - Update some .arch-inventory files
   - Indicate that emacs--devo--0--patch-834 does not need to be applied
   - Merge from gnus--rel--5.10
   - Restore lisp/emacs-lisp/cl-loaddefs.el

 * gnus--rel--5.10  (patch 239-241)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-28


Revision 1.577 - (view) (download) (annotate) - [select for diffs]
Sat Jul 28 08:13:00 2007 UTC (18 years, 3 months ago) by eliz
Branch: MAIN
Changes since 1.576: +5 -0 lines
Diff to previous 1.576
*** empty log message ***


Revision 1.553.2.7 - (view) (download) (annotate) - [select for diffs]
Sat Jul 28 08:11:17 2007 UTC (18 years, 3 months ago) by eliz
Branch: EMACS_22_BASE
Changes since 1.553.2.6: +5 -0 lines
Diff to previous 1.553.2.6 , to branch point 1.553
*** empty log message ***


Revision 1.340.2.78 - (view) (download) (annotate) - [select for diffs]
Fri Jul 27 10:51:54 2007 UTC (18 years, 3 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.77: +7 -1 lines
Diff to previous 1.340.2.77 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 824-831)

   - Update from CVS
   - Merge from emacs--rel--22

 * emacs--rel--22  (patch 70-74)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-238


Revision 1.576 - (view) (download) (annotate) - [select for diffs]
Fri Jul 27 07:15:18 2007 UTC (18 years, 3 months ago) by gm
Branch: MAIN
Changes since 1.575: +1 -1 lines
Diff to previous 1.575
*** empty log message ***


Revision 1.553.2.6 - (view) (download) (annotate) - [select for diffs]
Fri Jul 27 07:14:56 2007 UTC (18 years, 3 months ago) by gm
Branch: EMACS_22_BASE
Changes since 1.553.2.5: +1 -1 lines
Diff to previous 1.553.2.5 , to branch point 1.553
*** empty log message ***


Revision 1.575 - (view) (download) (annotate) - [select for diffs]
Thu Jul 26 05:26:00 2007 UTC (18 years, 3 months ago) by miles
Branch: MAIN
Changes since 1.574: +7 -1 lines
Diff to previous 1.574
Merge from emacs--rel--22

Patches applied:

 * emacs--rel--22  (patch 70-73)

   - Update from CVS

2007-07-25  Glenn Morris  <rgm@gnu.org>

   * Relicense all FSF files to GPLv3 or later.

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-828


Revision 1.553.2.5 - (view) (download) (annotate) - [select for diffs]
Wed Jul 25 07:04:01 2007 UTC (18 years, 3 months ago) by gm
Branch: EMACS_22_BASE
Changes since 1.553.2.4: +6 -0 lines
Diff to previous 1.553.2.4 , to branch point 1.553
*** empty log message ***


Revision 1.553.2.4 - (view) (download) (annotate) - [select for diffs]
Wed Jul 25 06:38:47 2007 UTC (18 years, 3 months ago) by gm
Branch: EMACS_22_BASE
Changes since 1.553.2.3: +1 -1 lines
Diff to previous 1.553.2.3 , to branch point 1.553
Switch license to GPLv3 or later.


Revision 1.340.2.45.2.23 - (view) (download) (annotate) - [select for diffs]
Tue Jul 17 04:55:25 2007 UTC (18 years, 3 months ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.22: +9 -5 lines
Diff to previous 1.340.2.45.2.22 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 803-813)

   - Update from CVS
   - Merge from emacs--rel--22

 * emacs--rel--22  (patch 51-58)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * emacs--unicode--0  (patch 224-231)

   - Update configure
   - Update from CVS
   - Merge from emacs--devo--0
   - Move branch-specific src/ChangeLog entry to src/ChangeLog.unicode
   - Regenerate configure

 * gnus--rel--5.10  (patch 233-236)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-65


Revision 1.340.2.45.2.22 - (view) (download) (annotate) - [select for diffs]
Tue Jul 17 04:48:34 2007 UTC (18 years, 3 months ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.21: +27 -0 lines
Diff to previous 1.340.2.45.2.21 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 793-802)

   - Update from CVS
   - Remove RCS keywords
   - Merge from emacs--rel--22

 * emacs--rel--22  (patch 42-50)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Gnus ChangeLog tweaks

 * emacs--unicode--0  (patch 220-223)

   - Update from CVS
   - Merge from emacs--devo--0

 * gnus--rel--5.10  (patch 229-232)

   - Merge from emacs--devo--0, emacs--rel--22
   - ChangeLog tweak
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-64


Revision 1.557.2.6 - (view) (download) (annotate) - [select for diffs]
Sun Jul 15 02:05:18 2007 UTC (18 years, 3 months ago) by miles
Branch: multi-tty
Changes since 1.557.2.5: +9 -5 lines
Diff to previous 1.557.2.5 , to branch point 1.557
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 803-813)

   - Update from CVS
   - Merge from emacs--rel--22

 * emacs--rel--22  (patch 51-58)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 233-236)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-25


Revision 1.340.2.77 - (view) (download) (annotate) - [select for diffs]
Mon Jul 9 08:00:49 2007 UTC (18 years, 3 months ago) by miles
Branch: emacs-unicode-2
CVS Tags: unicode-xft-base
Changes since 1.340.2.76: +9 -5 lines
Diff to previous 1.340.2.76 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 803-805)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-227


Revision 1.574 - (view) (download) (annotate) - [select for diffs]
Thu Jun 21 10:30:26 2007 UTC (18 years, 4 months ago) by schwab
Branch: MAIN
Changes since 1.573: +1 -1 lines
Diff to previous 1.573
Spelling fix.


Revision 1.573 - (view) (download) (annotate) - [select for diffs]
Wed Jun 20 19:38:28 2007 UTC (18 years, 4 months ago) by jhd
Branch: MAIN
Changes since 1.572: +5 -0 lines
Diff to previous 1.572
*** empty log message ***


Revision 1.572 - (view) (download) (annotate) - [select for diffs]
Wed Jun 20 07:50:24 2007 UTC (18 years, 4 months ago) by gm
Branch: MAIN
Changes since 1.571: +4 -5 lines
Diff to previous 1.571
As well as new entry, move stray entry to lisp/Changelog where it
belongs.


Revision 1.260.2.86 - (view) (download) (annotate) - [select for diffs]
Sat Jun 16 23:41:24 2007 UTC (18 years, 4 months ago) by miles
Branch: lexbind
Changes since 1.260.2.85: +27 -0 lines
Diff to previous 1.260.2.85 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 794-802)

   - Remove RCS keywords
   - Update from CVS
   - Merge from emacs--rel--22

 * emacs--rel--22  (patch 42-50)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Gnus ChangeLog tweaks

 * gnus--rel--5.10  (patch 229-232)

   - Merge from emacs--devo--0, emacs--rel--22
   - ChangeLog tweak
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-50


Revision 1.260.2.85 - (view) (download) (annotate) - [select for diffs]
Sat Jun 16 23:37:43 2007 UTC (18 years, 4 months ago) by miles
Branch: lexbind
Changes since 1.260.2.84: +20 -0 lines
Diff to previous 1.260.2.84 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 771-793)

   - Update from CVS
   - Merge from emacs--rel--22
   - Merge from emacs--rel--22, gnus--rel--5.10
   - Fix tq.el edge case
   - Merge from gnus--rel--5.10

 * emacs--rel--22  (patch 26-41)

   - Update from CVS
   - lisp/vc-hooks.el (vc-find-root): Fix file attribute test

 * gnus--rel--5.10  (patch 224-228)

   - Merge from emacs--devo--0, emacs--rel--22
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-49


Revision 1.557.2.5 - (view) (download) (annotate) - [select for diffs]
Sat Jun 16 22:33:38 2007 UTC (18 years, 4 months ago) by miles
Branch: multi-tty
Changes since 1.557.2.4: +27 -0 lines
Diff to previous 1.557.2.4 , to branch point 1.557
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 793-802)

   - Update from CVS
   - Remove RCS keywords
   - Merge from emacs--rel--22

 * emacs--rel--22  (patch 42-50)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Gnus ChangeLog tweaks

 * gnus--rel--5.10  (patch 229-232)

   - Merge from emacs--devo--0, emacs--rel--22
   - ChangeLog tweak
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-23


Revision 1.340.2.76 - (view) (download) (annotate) - [select for diffs]
Sat Jun 16 22:32:04 2007 UTC (18 years, 4 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.75: +27 -0 lines
Diff to previous 1.340.2.75 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 793-802)

   - Update from CVS
   - Remove RCS keywords
   - Merge from emacs--rel--22

 * emacs--rel--22  (patch 42-50)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Gnus ChangeLog tweaks

 * gnus--rel--5.10  (patch 229-232)

   - Merge from emacs--devo--0, emacs--rel--22
   - ChangeLog tweak
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-223


Revision 1.571 - (view) (download) (annotate) - [select for diffs]
Thu Jun 14 06:56:28 2007 UTC (18 years, 4 months ago) by jhd
Branch: MAIN
Changes since 1.570: +4 -0 lines
Diff to previous 1.570
*** empty log message ***


Revision 1.570 - (view) (download) (annotate) - [select for diffs]
Wed Jun 13 20:43:37 2007 UTC (18 years, 4 months ago) by jhd
Branch: MAIN
Changes since 1.569: +4 -0 lines
Diff to previous 1.569
*** empty log message ***


Revision 1.569 - (view) (download) (annotate) - [select for diffs]
Wed Jun 13 20:24:31 2007 UTC (18 years, 4 months ago) by kifer
Branch: MAIN
Changes since 1.568: +5 -0 lines
Diff to previous 1.568
2007-06-13  Michael Kifer  <kifer@cs.stonybrook.edu>

	* ediff-ptch.el (ediff-context-diff-label-regexp): partially undid
	previous patch


Revision 1.568 - (view) (download) (annotate) - [select for diffs]
Wed Jun 13 17:31:45 2007 UTC (18 years, 4 months ago) by cyd
Branch: MAIN
Changes since 1.567: +5 -0 lines
Diff to previous 1.567
* configure.in: Merge xaw3d and libXaw checks.  Check xaw3d even
when compiling without scrollbars.


Revision 1.567 - (view) (download) (annotate) - [select for diffs]
Tue Jun 12 08:14:28 2007 UTC (18 years, 4 months ago) by gm
Branch: MAIN
Changes since 1.566: +4 -0 lines
Diff to previous 1.566
*** empty log message ***


Revision 1.566 - (view) (download) (annotate) - [select for diffs]
Mon Jun 11 17:48:04 2007 UTC (18 years, 4 months ago) by jhd
Branch: MAIN
Changes since 1.565: +5 -0 lines
Diff to previous 1.565
*** empty log message ***


Revision 1.340.2.45.2.21 - (view) (download) (annotate) - [select for diffs]
Mon Jun 11 02:30:26 2007 UTC (18 years, 4 months ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.20: +20 -0 lines
Diff to previous 1.340.2.45.2.20 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 771-792)

   - Update from CVS
   - Merge from emacs--rel--22
   - Merge from emacs--rel--22, gnus--rel--5.10
   - Fix tq.el edge case
   - Merge from gnus--rel--5.10

 * emacs--rel--22  (patch 26-41)

   - Update from CVS
   - lisp/vc-hooks.el (vc-find-root): Fix file attribute test

 * emacs--unicode--0  (patch 210-219)

   - Merge from emacs--devo--0
   - Update from CVS

 * gnus--rel--5.10  (patch 224-228)

   - Merge from emacs--devo--0, emacs--rel--22
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-63


Revision 1.557.2.4 - (view) (download) (annotate) - [select for diffs]
Mon Jun 11 00:59:27 2007 UTC (18 years, 4 months ago) by miles
Branch: multi-tty
Changes since 1.557.2.3: +16 -0 lines
Diff to previous 1.557.2.3 , to branch point 1.557
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 781-792)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Merge from emacs--rel--22

 * emacs--rel--22  (patch 33-41)
 * gnus--rel--5.10  (patch 226-228)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-21


Revision 1.340.2.75 - (view) (download) (annotate) - [select for diffs]
Mon Jun 11 00:57:59 2007 UTC (18 years, 4 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.74: +16 -0 lines
Diff to previous 1.340.2.74 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 781-792)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Merge from emacs--rel--22

 * emacs--rel--22  (patch 33-41)
 * gnus--rel--5.10  (patch 226-228)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-219


Revision 1.565 - (view) (download) (annotate) - [select for diffs]
Sat Jun 9 03:19:01 2007 UTC (18 years, 4 months ago) by miles
Branch: MAIN
Changes since 1.564: +4 -0 lines
Diff to previous 1.564
Merge from emacs--rel--22

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-790


Revision 1.564 - (view) (download) (annotate) - [select for diffs]
Fri Jun 8 03:46:12 2007 UTC (18 years, 4 months ago) by gm
Branch: MAIN
Changes since 1.563: +4 -0 lines
Diff to previous 1.563
*** empty log message ***


Revision 1.563 - (view) (download) (annotate) - [select for diffs]
Thu Jun 7 08:02:07 2007 UTC (18 years, 4 months ago) by gm
Branch: MAIN
Changes since 1.562: +3 -0 lines
Diff to previous 1.562
*** empty log message ***


Revision 1.562 - (view) (download) (annotate) - [select for diffs]
Thu Jun 7 07:55:19 2007 UTC (18 years, 4 months ago) by gm
Branch: MAIN
Changes since 1.561: +5 -0 lines
Diff to previous 1.561
*** empty log message ***


Revision 1.553.2.3 - (view) (download) (annotate) - [select for diffs]
Sat Jun 2 11:07:00 2007 UTC (18 years, 4 months ago) by cyd
Branch: EMACS_22_BASE
CVS Tags: EMACS_22_1
Changes since 1.553.2.2: +4 -0 lines
Diff to previous 1.553.2.2 , to branch point 1.553
Version 22.1 released.


Revision 1.557.2.3 - (view) (download) (annotate) - [select for diffs]
Wed May 30 14:44:41 2007 UTC (18 years, 5 months ago) by miles
Branch: multi-tty
Changes since 1.557.2.2: +4 -0 lines
Diff to previous 1.557.2.2 , to branch point 1.557
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 771-780)

   - Update from CVS
   - Merge from emacs--rel--22
   - Merge from emacs--rel--22, gnus--rel--5.10
   - Fix tq.el edge case

 * emacs--rel--22  (patch 26-32)

   - Update from CVS
   - lisp/vc-hooks.el (vc-find-root): Fix file attribute test

 * gnus--rel--5.10  (patch 224-225)

   - Merge from emacs--devo--0, emacs--rel--22
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-18


Revision 1.340.2.74 - (view) (download) (annotate) - [select for diffs]
Fri May 25 05:05:34 2007 UTC (18 years, 5 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.73: +4 -0 lines
Diff to previous 1.340.2.73 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 771-772)

   - Update from CVS
   - Merge from emacs--rel--22

 * emacs--rel--22  (patch 26-27)

   - Update from CVS
   - lisp/vc-hooks.el (vc-find-root): Fix file attribute test

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-210


Revision 1.557.2.2 - (view) (download) (annotate) - [select for diffs]
Fri May 25 02:47:16 2007 UTC (18 years, 5 months ago) by miles
Branch: multi-tty
Changes since 1.557.2.1: +11 -0 lines
Diff to previous 1.557.2.1 , to branch point 1.557
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 765-770)

   - Update from CVS
   - Merge from emacs--rel--22
   - Merge from gnus--rel--5.10

 * emacs--rel--22  (patch 24-25)
 * gnus--rel--5.10  (patch 222-223)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-16


Revision 1.561 - (view) (download) (annotate) - [select for diffs]
Fri May 25 02:24:11 2007 UTC (18 years, 5 months ago) by cyd
Branch: MAIN
Changes since 1.560: +4 -0 lines
Diff to previous 1.560
* mkinstalldirs: Sync to version in automake CVS.


Revision 1.340.2.45.2.20 - (view) (download) (annotate) - [select for diffs]
Thu May 24 22:22:42 2007 UTC (18 years, 5 months ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.19: +27 -0 lines
Diff to previous 1.340.2.45.2.19 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 726-770)

   - Update from CVS
   - Merge from emacs--rel--22
   - Merge from gnus--rel--5.10
   - Update from CVS: lisp/textmodes/sgml-mode.el: Revert last change.

 * emacs--rel--22  (patch 6-25)

   - Update from CVS
   - Update from CVS: src/xterm.c (XTread_socket): Revert last change.

 * emacs--unicode--0  (patch 203-209)

   - Update from CVS
   - Merge from emacs--devo--0
   - Update from CVS: src/syntax.c (skip_syntaxes): Synch with the trunk.
   - Move NEWS entries for unicode branch into etc/NEWS.unicode

 * gnus--rel--5.10  (patch 218-223)

   - Merge from emacs--devo--0, emacs--rel--22
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-62


Revision 1.260.2.84 - (view) (download) (annotate) - [select for diffs]
Thu May 24 21:49:57 2007 UTC (18 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.83: +27 -0 lines
Diff to previous 1.260.2.83 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 726-770)

   - Update from CVS
   - Merge from emacs--rel--22
   - Merge from gnus--rel--5.10
   - Update from CVS: lisp/textmodes/sgml-mode.el: Revert last change.

 * emacs--rel--22  (patch 6-25)

   - Update from CVS
   - Update from CVS: src/xterm.c (XTread_socket): Revert last change.

 * gnus--rel--5.10  (patch 218-223)

   - Merge from emacs--devo--0, emacs--rel--22
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-47


Revision 1.340.2.73 - (view) (download) (annotate) - [select for diffs]
Thu May 24 21:31:04 2007 UTC (18 years, 5 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.72: +23 -0 lines
Diff to previous 1.340.2.72 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 751-770)

   - Update from CVS
   - Merge from emacs--rel--22
   - Update from CVS: lisp/textmodes/sgml-mode.el: Revert last change.
   - Merge from gnus--rel--5.10

 * emacs--rel--22  (patch 18-25)
 * gnus--rel--5.10  (patch 222-223)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-208


Revision 1.560 - (view) (download) (annotate) - [select for diffs]
Tue May 22 15:55:02 2007 UTC (18 years, 5 months ago) by schwab
Branch: MAIN
Changes since 1.559: +11 -0 lines
Diff to previous 1.559
*** empty log message ***


Revision 1.557.2.1 - (view) (download) (annotate) - [select for diffs]
Sun May 20 23:29:00 2007 UTC (18 years, 5 months ago) by miles
Branch: multi-tty
Changes since 1.557: +12 -0 lines
Diff to previous 1.557
Merged from emacs--devo--0

Patches applied:

 * emacs@sv.gnu.org/emacs--devo--0--patch-744
   Update from CVS

 * emacs@sv.gnu.org/emacs--devo--0--patch-745
   Update from CVS

 * emacs@sv.gnu.org/emacs--devo--0--patch-746
   Merge from emacs--rel--22

 * emacs@sv.gnu.org/emacs--devo--0--patch-747
   Update from CVS

 * emacs@sv.gnu.org/emacs--devo--0--patch-748
   Update from CVS

 * emacs@sv.gnu.org/emacs--devo--0--patch-749
   Merge from gnus--rel--5.10

 * emacs@sv.gnu.org/emacs--devo--0--patch-750
   Merge from emacs--rel--22

 * emacs@sv.gnu.org/emacs--devo--0--patch-751
   Update from CVS

 * emacs@sv.gnu.org/emacs--devo--0--patch-752
   Update from CVS

 * emacs@sv.gnu.org/emacs--devo--0--patch-753
   Merge from emacs--rel--22

 * emacs@sv.gnu.org/emacs--devo--0--patch-754
   Update from CVS

 * emacs@sv.gnu.org/emacs--devo--0--patch-755
   Merge from emacs--rel--22

 * emacs@sv.gnu.org/emacs--devo--0--patch-756
   Update from CVS

 * emacs@sv.gnu.org/emacs--devo--0--patch-757
   Update from CVS: lisp/textmodes/sgml-mode.el: Revert last change.

 * emacs@sv.gnu.org/emacs--devo--0--patch-758
   Update from CVS

 * emacs@sv.gnu.org/emacs--devo--0--patch-759
   Merge from emacs--rel--22

 * emacs@sv.gnu.org/emacs--devo--0--patch-760
   Update from CVS

 * emacs@sv.gnu.org/emacs--devo--0--patch-761
   Update from CVS

 * emacs@sv.gnu.org/emacs--rel--22--patch-14
   Update from CVS

 * emacs@sv.gnu.org/emacs--rel--22--patch-15
   Update from CVS

 * emacs@sv.gnu.org/emacs--rel--22--patch-16
   Update from CVS: src/xterm.c (XTread_socket): Revert last change.

 * emacs@sv.gnu.org/emacs--rel--22--patch-17
   Update from CVS

 * emacs@sv.gnu.org/emacs--rel--22--patch-18
   Update from CVS

 * emacs@sv.gnu.org/emacs--rel--22--patch-19
   Update from CVS

 * emacs@sv.gnu.org/emacs--rel--22--patch-20
   Update from CVS

 * emacs@sv.gnu.org/emacs--rel--22--patch-21
   Update from CVS

 * emacs@sv.gnu.org/gnus--rel--5.10--patch-221
   Update from CVS

Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-12
Creator:  Karoly Lorentey <karoly@lorentey.hu>


Revision 1.559 - (view) (download) (annotate) - [select for diffs]
Sun May 20 05:13:28 2007 UTC (18 years, 5 months ago) by nickrob
Branch: MAIN
Changes since 1.558: +6 -0 lines
Diff to previous 1.558
*** empty log message ***


Revision 1.558 - (view) (download) (annotate) - [select for diffs]
Sun May 20 02:22:19 2007 UTC (18 years, 5 months ago) by nickrob
Branch: MAIN
Changes since 1.557: +6 -0 lines
Diff to previous 1.557
*** empty log message ***


Revision 1.340.2.72 - (view) (download) (annotate) - [select for diffs]
Tue May 15 07:16:48 2007 UTC (18 years, 5 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.71: +4 -0 lines
Diff to previous 1.340.2.71 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 726-750)

   - Update from CVS
   - Merge from emacs--rel--22
   - Merge from gnus--rel--5.10

 * emacs--rel--22  (patch 6-17)

   - Update from CVS
   - Update from CVS: src/xterm.c (XTread_socket): Revert last change.

 * gnus--rel--5.10  (patch 218-221)

   - Merge from emacs--devo--0, emacs--rel--22
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-205


Revision 1.557 - (view) (download) (annotate) - [select for diffs]
Thu May 3 04:13:27 2007 UTC (18 years, 5 months ago) by gm
Branch: MAIN
Branch point for: multi-tty
Changes since 1.556: +4 -0 lines
Diff to previous 1.556
*** empty log message ***


Revision 1.553.2.2 - (view) (download) (annotate) - [select for diffs]
Thu May 3 04:11:38 2007 UTC (18 years, 5 months ago) by gm
Branch: EMACS_22_BASE
CVS Tags: EMACS_22_BRANCHPOINT, EMACS_PRETEST_22_0_990
Changes since 1.553.2.1: +4 -0 lines
Diff to previous 1.553.2.1 , to branch point 1.553
*** empty log message ***


Revision 1.260.2.83 - (view) (download) (annotate) - [select for diffs]
Tue May 1 23:55:10 2007 UTC (18 years, 6 months ago) by miles
Branch: lexbind
Changes since 1.260.2.82: +31 -1 lines
Diff to previous 1.260.2.82 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 698-725)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Merge from emacs--rel--22
   - Merge from emacs--rel--22: lisp/dired-x.el: Revert 2007-04-06 change.

 * emacs--rel--22  (base, patch 1-5)

   - tag of emacs@sv.gnu.org/emacs--devo--0--patch-709
   - Sync to CVS tag EMACS_22_BRANCHPOINT
   - Sync to CVS branch EMACS_22_BASE
   - Update from CVS

 * gnus--rel--5.10  (patch 216-217)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-46


Revision 1.260.2.82 - (view) (download) (annotate) - [select for diffs]
Tue May 1 23:51:56 2007 UTC (18 years, 6 months ago) by miles
Branch: lexbind
Changes since 1.260.2.81: +10 -0 lines
Diff to previous 1.260.2.81 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 676-697)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Release ERC 5.2.

 * gnus--rel--5.10  (patch 211-215)

   - Update from CVS
   - Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-45


Revision 1.340.2.45.2.19 - (view) (download) (annotate) - [select for diffs]
Tue May 1 23:27:23 2007 UTC (18 years, 6 months ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.18: +31 -1 lines
Diff to previous 1.340.2.45.2.18 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 698-725)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Merge from emacs--rel--22
   - Merge from emacs--rel--22: lisp/dired-x.el: Revert 2007-04-06 change.

 * emacs--rel--22  (base, patch 1-5)

   - tag of emacs@sv.gnu.org/emacs--devo--0--patch-709
   - Sync to CVS tag EMACS_22_BRANCHPOINT
   - Sync to CVS branch EMACS_22_BASE
   - Update from CVS

 * emacs--unicode--0  (patch 191-202)

   - Change default value of `enable_font_backend' to 1
   - Update from CVS
   - Move src/ChangeLog entry to src/ChangeLog.unicode
   - Merge from emacs--devo--0

 * gnus--rel--5.10  (patch 216-217)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-61


Revision 1.340.2.71 - (view) (download) (annotate) - [select for diffs]
Tue May 1 23:03:34 2007 UTC (18 years, 6 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.70: +5 -0 lines
Diff to previous 1.340.2.70 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 713-725)

   - Update from CVS
   - Merge from emacs--rel--22
   - Merge from emacs--rel--22: lisp/dired-x.el: Revert 2007-04-06 change.
   - Merge from gnus--rel--5.10

 * emacs--rel--22  (base, patch 1-5)

   - tag of emacs@sv.gnu.org/emacs--devo--0--patch-709
   - Sync to CVS tag EMACS_22_BRANCHPOINT
   - Sync to CVS branch EMACS_22_BASE
   - Update from CVS

 * gnus--rel--5.10  (patch 217)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-202


Revision 1.556 - (view) (download) (annotate) - [select for diffs]
Fri Apr 27 15:14:09 2007 UTC (18 years, 6 months ago) by schwab
Branch: MAIN
Changes since 1.555: +5 -0 lines
Diff to previous 1.555
*** empty log message ***


Revision 1.340.2.70 - (view) (download) (annotate) - [select for diffs]
Thu Apr 26 04:38:26 2007 UTC (18 years, 6 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.69: +4 -0 lines
Diff to previous 1.340.2.69 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 711-712)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-199


Revision 1.555 - (view) (download) (annotate) - [select for diffs]
Thu Apr 26 03:30:03 2007 UTC (18 years, 6 months ago) by gm
Branch: MAIN
Changes since 1.554: +4 -0 lines
Diff to previous 1.554
*** empty log message ***


Revision 1.340.2.69 - (view) (download) (annotate) - [select for diffs]
Tue Apr 24 21:56:21 2007 UTC (18 years, 6 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.68: +22 -1 lines
Diff to previous 1.340.2.68 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 698-710)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 216)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-196


Revision 1.553.2.1 - (view) (download) (annotate) - [select for diffs]
Tue Apr 24 14:24:46 2007 UTC (18 years, 6 months ago) by lektu
Branch: EMACS_22_BASE
Changes since 1.553: +5 -1 lines
Diff to previous 1.553
*** empty log message ***


Revision 1.554 - (view) (download) (annotate) - [select for diffs]
Tue Apr 24 14:20:54 2007 UTC (18 years, 6 months ago) by lektu
Branch: MAIN
Changes since 1.553: +5 -1 lines
Diff to previous 1.553
*** empty log message ***


Revision 1.553 - (view) (download) (annotate) - [select for diffs]
Thu Apr 19 18:07:16 2007 UTC (18 years, 6 months ago) by cyd
Branch: MAIN
CVS Tags: EMACS_PRETEST_22_0_99
Branch point for: EMACS_22_BASE
Changes since 1.552: +5 -0 lines
Diff to previous 1.552
* configure.in: Signal error if Xaw libs are missing in a Lucid
build.


Revision 1.552 - (view) (download) (annotate) - [select for diffs]
Wed Apr 18 04:01:42 2007 UTC (18 years, 6 months ago) by gm
Branch: MAIN
Changes since 1.551: +4 -0 lines
Diff to previous 1.551
*** empty log message ***


Revision 1.551 - (view) (download) (annotate) - [select for diffs]
Sun Apr 15 01:34:00 2007 UTC (18 years, 6 months ago) by gm
Branch: MAIN
CVS Tags: EMACS_PRETEST_22_0_98
Changes since 1.550: +4 -0 lines
Diff to previous 1.550
*** empty log message ***


Revision 1.550 - (view) (download) (annotate) - [select for diffs]
Fri Apr 13 02:56:12 2007 UTC (18 years, 6 months ago) by gm
Branch: MAIN
Changes since 1.549: +4 -0 lines
Diff to previous 1.549
*** empty log message ***


Revision 1.340.2.45.2.18 - (view) (download) (annotate) - [select for diffs]
Wed Apr 11 00:41:03 2007 UTC (18 years, 6 months ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.17: +38 -0 lines
Diff to previous 1.340.2.45.2.17 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 670-697)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Release ERC 5.2.

 * emacs--unicode--0  (patch 185-189)

   - Merge from emacs--devo--0
   - Update from CVS
   - vc-bzr.el: New file.

 * gnus--rel--5.10  (patch 209-215)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-59


Revision 1.340.2.68 - (view) (download) (annotate) - [select for diffs]
Wed Apr 11 00:17:43 2007 UTC (18 years, 6 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.67: +16 -0 lines
Diff to previous 1.340.2.67 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 675-697)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Release ERC 5.2.

 * gnus--rel--5.10  (patch 211-215)

   - Update from CVS
   - Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-189


Revision 1.549 - (view) (download) (annotate) - [select for diffs]
Wed Apr 4 02:52:10 2007 UTC (18 years, 6 months ago) by gm
Branch: MAIN
Changes since 1.548: +5 -0 lines
Diff to previous 1.548
*** empty log message ***


Revision 1.548 - (view) (download) (annotate) - [select for diffs]
Fri Mar 23 02:56:14 2007 UTC (18 years, 7 months ago) by gm
Branch: MAIN
CVS Tags: EMACS_PRETEST_22_0_97
Changes since 1.547: +5 -0 lines
Diff to previous 1.547
*** empty log message ***


Revision 1.260.2.81 - (view) (download) (annotate) - [select for diffs]
Fri Mar 23 00:46:32 2007 UTC (18 years, 7 months ago) by miles
Branch: lexbind
Changes since 1.260.2.80: +28 -0 lines
Diff to previous 1.260.2.80 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 671-675)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 209-210)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-44


Revision 1.260.2.80 - (view) (download) (annotate) - [select for diffs]
Fri Mar 23 00:40:33 2007 UTC (18 years, 7 months ago) by miles
Branch: lexbind
Changes since 1.260.2.79: +38 -4 lines
Diff to previous 1.260.2.79 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 624-661)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Remove RCS keywords

 * gnus--rel--5.10  (patch 200-206)

   - Merge from emacs--devo--0
   - Update from CVS: lisp/nnweb.el (nnweb-google-parse-1): Update parser.
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-42


Revision 1.547 - (view) (download) (annotate) - [select for diffs]
Thu Mar 22 14:33:37 2007 UTC (18 years, 7 months ago) by cyd
Branch: MAIN
Changes since 1.546: +1 -1 lines
Diff to previous 1.546
Fix attribution.


Revision 1.546 - (view) (download) (annotate) - [select for diffs]
Thu Mar 22 14:32:31 2007 UTC (18 years, 7 months ago) by cyd
Branch: MAIN
Changes since 1.545: +6 -0 lines
Diff to previous 1.545
* configure.in: Add support for AIX4.3 on IBM RS6000.
* configure: Regenerate.


Revision 1.340.2.67 - (view) (download) (annotate) - [select for diffs]
Wed Mar 21 13:33:04 2007 UTC (18 years, 7 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.66: +22 -0 lines
Diff to previous 1.340.2.66 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 670-674)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 209-210)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-185


Revision 1.340.2.45.2.17 - (view) (download) (annotate) - [select for diffs]
Wed Mar 21 12:40:46 2007 UTC (18 years, 7 months ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.16: +12 -1 lines
Diff to previous 1.340.2.45.2.16 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 653-661)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * emacs--unicode--0  (patch 180-183)
 * gnus--rel--5.10  (patch 203-206)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-57


Revision 1.545 - (view) (download) (annotate) - [select for diffs]
Tue Mar 20 19:47:30 2007 UTC (18 years, 7 months ago) by rms
Branch: MAIN
Changes since 1.544: +4 -0 lines
Diff to previous 1.544
*** empty log message ***


Revision 1.544 - (view) (download) (annotate) - [select for diffs]
Mon Mar 19 05:42:21 2007 UTC (18 years, 7 months ago) by rms
Branch: MAIN
Changes since 1.543: +6 -0 lines
Diff to previous 1.543
*** empty log message ***


Revision 1.543 - (view) (download) (annotate) - [select for diffs]
Mon Mar 19 01:05:42 2007 UTC (18 years, 7 months ago) by cyd
Branch: MAIN
Changes since 1.542: +7 -0 lines
Diff to previous 1.542
* configure.in: Don't define KERBEROS, KERBEROS5, or HESIOD if the
user specifies "without".

* configure: Regenerate.


Revision 1.542 - (view) (download) (annotate) - [select for diffs]
Sun Mar 18 17:29:27 2007 UTC (18 years, 7 months ago) by jhd
Branch: MAIN
Changes since 1.541: +1 -0 lines
Diff to previous 1.541
*** empty log message ***


Revision 1.541 - (view) (download) (annotate) - [select for diffs]
Sun Mar 18 17:13:35 2007 UTC (18 years, 7 months ago) by jhd
Branch: MAIN
Changes since 1.540: +4 -0 lines
Diff to previous 1.540
*** empty log message ***


Revision 1.340.2.66 - (view) (download) (annotate) - [select for diffs]
Sun Mar 4 06:19:39 2007 UTC (18 years, 7 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.65: +12 -1 lines
Diff to previous 1.340.2.65 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 653-661)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 203-206)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-180


Revision 1.340.2.45.2.16 - (view) (download) (annotate) - [select for diffs]
Sun Mar 4 01:05:08 2007 UTC (18 years, 7 months ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.15: +5 -1 lines
Diff to previous 1.340.2.45.2.15 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 638-652)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * emacs--unicode--0  (patch 177-179)

   - Merge from emacs--devo--0
   - Update from CVS

 * gnus--rel--5.10  (patch 202)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-56


Revision 1.540 - (view) (download) (annotate) - [select for diffs]
Wed Feb 28 04:09:56 2007 UTC (18 years, 8 months ago) by dann
Branch: MAIN
CVS Tags: EMACS_PRETEST_22_0_95
Changes since 1.539: +2 -2 lines
Diff to previous 1.539
*** empty log message ***


Revision 1.539 - (view) (download) (annotate) - [select for diffs]
Tue Feb 27 17:12:26 2007 UTC (18 years, 8 months ago) by dann
Branch: MAIN
Changes since 1.538: +6 -0 lines
Diff to previous 1.538
configure.in (xtensa-*-linux-gnu*): New configuration.
configure: Regenerate.


Revision 1.538 - (view) (download) (annotate) - [select for diffs]
Tue Feb 27 02:58:24 2007 UTC (18 years, 8 months ago) by gm
Branch: MAIN
Changes since 1.537: +6 -1 lines
Diff to previous 1.537
*** empty log message ***


Revision 1.340.2.65 - (view) (download) (annotate) - [select for diffs]
Mon Feb 26 23:03:42 2007 UTC (18 years, 8 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.64: +5 -1 lines
Diff to previous 1.340.2.64 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 638-652)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 202)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-177


Revision 1.340.2.45.2.15 - (view) (download) (annotate) - [select for diffs]
Mon Feb 26 22:11:51 2007 UTC (18 years, 8 months ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.14: +22 -3 lines
Diff to previous 1.340.2.45.2.14 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 624-637)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Remove RCS keywords

 * emacs--unicode--0  (patch 168-176)

   - src/Makefile.in: Remove redundant HAVE_XFT clause
   - Update from CVS
   - Merge from emacs--devo--0

 * gnus--rel--5.10  (patch 200-201)

   - Merge from emacs--devo--0
   - Update from CVS: lisp/nnweb.el (nnweb-google-parse-1): Update parser.

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-55


Revision 1.537 - (view) (download) (annotate) - [select for diffs]
Fri Feb 23 03:30:25 2007 UTC (18 years, 8 months ago) by dann
Branch: MAIN
CVS Tags: EMACS_PRETEST_22_0_94
Changes since 1.536: +4 -0 lines
Diff to previous 1.536
Updated from master source.


Revision 1.536 - (view) (download) (annotate) - [select for diffs]
Sat Feb 17 12:36:27 2007 UTC (18 years, 8 months ago) by eliz
Branch: MAIN
Changes since 1.535: +1 -1 lines
Diff to previous 1.535
Remove `(tiny change)' from Chris Moore's contributions.


Revision 1.340.2.64 - (view) (download) (annotate) - [select for diffs]
Tue Feb 13 12:14:06 2007 UTC (18 years, 8 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.63: +22 -3 lines
Diff to previous 1.340.2.63 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 624-636)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 200-201)

   - Merge from emacs--devo--0
   - Update from CVS: lisp/nnweb.el (nnweb-google-parse-1): Update parser.

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-171


Revision 1.260.2.79 - (view) (download) (annotate) - [select for diffs]
Sun Feb 11 14:42:05 2007 UTC (18 years, 8 months ago) by miles
Branch: lexbind
Changes since 1.260.2.78: +16 -0 lines
Diff to previous 1.260.2.78 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 615-622)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 197-199)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-40


Revision 1.260.2.78 - (view) (download) (annotate) - [select for diffs]
Sun Feb 11 14:34:21 2007 UTC (18 years, 8 months ago) by miles
Branch: lexbind
Changes since 1.260.2.77: +11 -1 lines
Diff to previous 1.260.2.77 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 586-614)

   - Update from CVS
   - Update from erc--emacs--22
   - Merge from gnus--rel--5.10
   - Merge from erc--main--0
   - Make byte compiler correctly write circular constants

 * gnus--rel--5.10  (patch 186-196)

   - Update from CVS
   - Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-39


Revision 1.535 - (view) (download) (annotate) - [select for diffs]
Sat Feb 10 23:42:54 2007 UTC (18 years, 8 months ago) by gm
Branch: MAIN
Changes since 1.534: +17 -2 lines
Diff to previous 1.534
Switch to standard GPL text for license.


Revision 1.534 - (view) (download) (annotate) - [select for diffs]
Fri Feb 2 13:55:45 2007 UTC (18 years, 8 months ago) by lektu
Branch: MAIN
Changes since 1.533: +3 -3 lines
Diff to previous 1.533
Fix typos.


Revision 1.533 - (view) (download) (annotate) - [select for diffs]
Wed Jan 31 17:41:27 2007 UTC (18 years, 8 months ago) by jhd
Branch: MAIN
Changes since 1.532: +4 -0 lines
Diff to previous 1.532
*** empty log message ***


Revision 1.340.2.45.2.14 - (view) (download) (annotate) - [select for diffs]
Tue Jan 30 23:02:25 2007 UTC (18 years, 8 months ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.13: +27 -1 lines
Diff to previous 1.340.2.45.2.13 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 586-621)

   - Update from CVS
   - Update from erc--emacs--22
   - Merge from gnus--rel--5.10
   - Merge from erc--main--0
   - Make byte compiler correctly write circular constants

 * emacs--unicode--0  (patch 161-166)
 * gnus--rel--5.10  (patch 186-199)

   - Update from CVS
   - Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-53


Revision 1.340.2.63 - (view) (download) (annotate) - [select for diffs]
Tue Jan 30 22:22:40 2007 UTC (18 years, 9 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.62: +16 -0 lines
Diff to previous 1.340.2.62 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 615-621)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 197-199)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-166


Revision 1.532 - (view) (download) (annotate) - [select for diffs]
Mon Jan 29 17:03:59 2007 UTC (18 years, 9 months ago) by cyd
Branch: MAIN
Changes since 1.531: +6 -0 lines
Diff to previous 1.531
* configure.in: Restore support for hp800's not running HP-UX.

* configure: Regenerate.


Revision 1.531 - (view) (download) (annotate) - [select for diffs]
Sat Jan 27 18:41:25 2007 UTC (18 years, 9 months ago) by cyd
Branch: MAIN
Changes since 1.530: +6 -0 lines
Diff to previous 1.530
* configure.in: Remove support for hp800 and sr2k machine types.

* configure: Regenerate.


Revision 1.530 - (view) (download) (annotate) - [select for diffs]
Fri Jan 26 16:31:42 2007 UTC (18 years, 9 months ago) by jhd
Branch: MAIN
Changes since 1.529: +4 -0 lines
Diff to previous 1.529
*** empty log message ***


Revision 1.340.2.62 - (view) (download) (annotate) - [select for diffs]
Fri Jan 26 06:15:21 2007 UTC (18 years, 9 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.61: +11 -1 lines
Diff to previous 1.340.2.61 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 586-614)

   - Update from CVS
   - Update from erc--emacs--22
   - Merge from gnus--rel--5.10
   - Merge from erc--main--0
   - Make byte compiler correctly write circular constants

 * gnus--rel--5.10  (patch 186-196)

   - Update from CVS
   - Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-162


Revision 1.529 - (view) (download) (annotate) - [select for diffs]
Sun Jan 21 04:21:44 2007 UTC (18 years, 9 months ago) by gm
Branch: MAIN
CVS Tags: EMACS_PRETEST_22_0_93
Changes since 1.528: +1 -1 lines
Diff to previous 1.528
Add 2007 to copyright years.


Revision 1.528 - (view) (download) (annotate) - [select for diffs]
Thu Jan 18 16:13:22 2007 UTC (18 years, 9 months ago) by cyd
Branch: MAIN
Changes since 1.527: +4 -0 lines
Diff to previous 1.527
* INSTALL: Info files moved to share/info.


Revision 1.527 - (view) (download) (annotate) - [select for diffs]
Wed Jan 3 23:47:14 2007 UTC (18 years, 9 months ago) by rms
Branch: MAIN
Changes since 1.526: +6 -0 lines
Diff to previous 1.526
*** empty log message ***


Revision 1.340.2.45.2.13 - (view) (download) (annotate) - [select for diffs]
Tue Jan 2 01:41:30 2007 UTC (18 years, 9 months ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.12: +106 -139 lines
Diff to previous 1.340.2.45.2.12 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 523-582)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Update from erc--emacs--22
   - erc-iswitchb: Temporarily enable iswitchb mode

 * emacs--unicode--0  (patch 150-159)

   - Merge from emacs--devo--0
   - Update from CVS
   - Fix ChangeLog
   - Update from CVS: src/regex.c (regex_compile): Synch with HEAD.
   - Regenerate configure with autoconf 2.61

 * gnus--rel--5.10  (patch 168-185)

   - Update from CVS
   - Merge from emacs--devo--0
   - Update from CVS: lisp/legacy-gnus-agent.el: Add Copyright notice.

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-51


Revision 1.260.2.77 - (view) (download) (annotate) - [select for diffs]
Mon Jan 1 04:00:50 2007 UTC (18 years, 9 months ago) by miles
Branch: lexbind
Changes since 1.260.2.76: +34 -103 lines
Diff to previous 1.260.2.76 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 563-582)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 177-185)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-37


Revision 1.340.2.61 - (view) (download) (annotate) - [select for diffs]
Mon Jan 1 03:20:59 2007 UTC (18 years, 9 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.60: +34 -103 lines
Diff to previous 1.340.2.60 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 563-582)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 177-185)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-158


Revision 1.526 - (view) (download) (annotate) - [select for diffs]
Tue Dec 26 11:38:02 2006 UTC (18 years, 10 months ago) by schwab
Branch: MAIN
Changes since 1.525: +4 -0 lines
Diff to previous 1.525
*** empty log message ***


Revision 1.525 - (view) (download) (annotate) - [select for diffs]
Mon Dec 25 23:38:37 2006 UTC (18 years, 10 months ago) by lektu
Branch: MAIN
Changes since 1.524: +9 -9 lines
Diff to previous 1.524
*** empty log message ***


Revision 1.524 - (view) (download) (annotate) - [select for diffs]
Sun Dec 24 01:49:35 2006 UTC (18 years, 10 months ago) by rms
Branch: MAIN
Changes since 1.523: +4 -10 lines
Diff to previous 1.523
*** empty log message ***


Revision 1.523 - (view) (download) (annotate) - [select for diffs]
Sat Dec 23 21:33:50 2006 UTC (18 years, 10 months ago) by kifer
Branch: MAIN
Changes since 1.522: +10 -0 lines
Diff to previous 1.522
2006-12-23  Michael Kifer  <kifer@cs.stonybrook.edu>

	* ediff-diff.el (ediff-diff-options): clarify docstring.
	(ediff-setup-diff-regions): disallow -u in ediff-diff-options.

	* viper-cmd.el (viper-post-command-sentinel): protect against errors in
	hooks.
	(viper-add-newline-at-eob-if-necessary): add newline only if we
	actually modify buffer; ignore errors if occur.


Revision 1.522 - (view) (download) (annotate) - [select for diffs]
Fri Dec 22 23:09:54 2006 UTC (18 years, 10 months ago) by eliz
Branch: MAIN
Changes since 1.521: +7 -0 lines
Diff to previous 1.521
*** empty log message ***


Revision 1.521 - (view) (download) (annotate) - [select for diffs]
Fri Dec 22 19:23:10 2006 UTC (18 years, 10 months ago) by cyd
Branch: MAIN
Changes since 1.520: +4 -0 lines
Diff to previous 1.520
* configure: Regenerate with autoconf 2.61.


Revision 1.520 - (view) (download) (annotate) - [select for diffs]
Wed Dec 20 19:57:58 2006 UTC (18 years, 10 months ago) by jhd
Branch: MAIN
Changes since 1.519: +5 -0 lines
Diff to previous 1.519
*** empty log message ***


Revision 1.519 - (view) (download) (annotate) - [select for diffs]
Tue Dec 19 22:38:40 2006 UTC (18 years, 10 months ago) by rms
Branch: MAIN
Changes since 1.518: +1 -99 lines
Diff to previous 1.518
Delete entries for regenerating automatically generated files.


Revision 1.518 - (view) (download) (annotate) - [select for diffs]
Tue Dec 19 06:49:01 2006 UTC (18 years, 10 months ago) by jhd
Branch: MAIN
CVS Tags: EMACS_PRETEST_22_0_92
Changes since 1.517: +5 -0 lines
Diff to previous 1.517
*** empty log message ***


Revision 1.260.2.76 - (view) (download) (annotate) - [select for diffs]
Sat Dec 16 03:56:14 2006 UTC (18 years, 10 months ago) by miles
Branch: lexbind
Changes since 1.260.2.75: +21 -3 lines
Diff to previous 1.260.2.75 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 545-562)

   - Update from CVS
   - Update from erc--emacs--22
   - Merge from gnus--rel--5.10
   - erc-iswitchb: Temporarily enable iswitchb mode

 * gnus--rel--5.10  (patch 172-176)

   - Merge from emacs--devo--0
   - Update from CVS
   - Update from CVS: lisp/legacy-gnus-agent.el: Add Copyright notice.

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-36


Revision 1.260.2.75 - (view) (download) (annotate) - [select for diffs]
Sat Dec 16 03:52:35 2006 UTC (18 years, 10 months ago) by miles
Branch: lexbind
Changes since 1.260.2.74: +60 -42 lines
Diff to previous 1.260.2.74 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 523-544)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 168-171)

   - Update from CVS
   - Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-35


Revision 1.340.2.60 - (view) (download) (annotate) - [select for diffs]
Sat Dec 16 01:29:24 2006 UTC (18 years, 10 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.59: +21 -3 lines
Diff to previous 1.340.2.59 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 545-562)

   - Update from CVS
   - Update from erc--emacs--22
   - Merge from gnus--rel--5.10
   - erc-iswitchb: Temporarily enable iswitchb mode

 * gnus--rel--5.10  (patch 172-176)

   - Merge from emacs--devo--0
   - Update from CVS
   - Update from CVS: lisp/legacy-gnus-agent.el: Add Copyright notice.

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-156


Revision 1.517 - (view) (download) (annotate) - [select for diffs]
Sun Dec 10 16:25:43 2006 UTC (18 years, 10 months ago) by schwab
Branch: MAIN
Changes since 1.516: +7 -0 lines
Diff to previous 1.516
*** empty log message ***


Revision 1.516 - (view) (download) (annotate) - [select for diffs]
Fri Dec 8 15:44:56 2006 UTC (18 years, 10 months ago) by cyd
Branch: MAIN
Changes since 1.515: +6 -0 lines
Diff to previous 1.515
* configure.in: Add support for Solaris 10 on x86-64.
* configure: Regenerate.


Revision 1.515 - (view) (download) (annotate) - [select for diffs]
Fri Dec 8 07:18:59 2006 UTC (18 years, 10 months ago) by jhd
Branch: MAIN
Changes since 1.514: +5 -0 lines
Diff to previous 1.514
*** empty log message ***


Revision 1.514 - (view) (download) (annotate) - [select for diffs]
Fri Dec 8 00:18:41 2006 UTC (18 years, 10 months ago) by lektu
Branch: MAIN
Changes since 1.513: +3 -3 lines
Diff to previous 1.513
*** empty log message ***


Revision 1.340.2.59 - (view) (download) (annotate) - [select for diffs]
Thu Dec 7 04:14:02 2006 UTC (18 years, 10 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.58: +60 -42 lines
Diff to previous 1.340.2.58 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 523-544)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 168-171)

   - Update from CVS
   - Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-150


Revision 1.513 - (view) (download) (annotate) - [select for diffs]
Tue Dec 5 05:33:38 2006 UTC (18 years, 10 months ago) by gm
Branch: MAIN
Changes since 1.512: +2 -2 lines
Diff to previous 1.512
Update copyright years.


Revision 1.260.2.74 - (view) (download) (annotate) - [select for diffs]
Mon Dec 4 12:19:10 2006 UTC (18 years, 10 months ago) by miles
Branch: lexbind
Changes since 1.260.2.73: +25 -22 lines
Diff to previous 1.260.2.73 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 505-522)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Update from CVS: etc/TUTORIAL.cn: Updated.
   - Merge from erc--emacs--22

 * gnus--rel--5.10  (patch 164-167)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-33


Revision 1.260.2.73 - (view) (download) (annotate) - [select for diffs]
Mon Dec 4 12:16:19 2006 UTC (18 years, 10 months ago) by miles
Branch: lexbind
Changes since 1.260.2.72: +15 -0 lines
Diff to previous 1.260.2.72 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 491-504)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 161-163)

   - Update from CVS
   - Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-32


Revision 1.260.2.72 - (view) (download) (annotate) - [select for diffs]
Mon Dec 4 12:13:24 2006 UTC (18 years, 10 months ago) by miles
Branch: lexbind
Changes since 1.260.2.71: +43 -0 lines
Diff to previous 1.260.2.71 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 476-490)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 153-160)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-31


Revision 1.260.2.71 - (view) (download) (annotate) - [select for diffs]
Mon Dec 4 12:10:55 2006 UTC (18 years, 10 months ago) by miles
Branch: lexbind
Changes since 1.260.2.70: +13 -0 lines
Diff to previous 1.260.2.70 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 447-475)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 141-152)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-30


Revision 1.512 - (view) (download) (annotate) - [select for diffs]
Mon Dec 4 08:18:09 2006 UTC (18 years, 10 months ago) by mituharu
Branch: MAIN
Changes since 1.511: +6 -0 lines
Diff to previous 1.511
*** empty log message ***


Revision 1.511 - (view) (download) (annotate) - [select for diffs]
Sun Dec 3 00:55:40 2006 UTC (18 years, 10 months ago) by gm
Branch: MAIN
Changes since 1.510: +4 -0 lines
Diff to previous 1.510
*** empty log message ***


Revision 1.510 - (view) (download) (annotate) - [select for diffs]
Sun Dec 3 00:46:24 2006 UTC (18 years, 10 months ago) by gm
Branch: MAIN
Changes since 1.509: +4 -0 lines
Diff to previous 1.509
*** empty log message ***


Revision 1.509 - (view) (download) (annotate) - [select for diffs]
Wed Nov 29 16:16:55 2006 UTC (18 years, 11 months ago) by lektu
Branch: MAIN
Changes since 1.508: +8 -8 lines
Diff to previous 1.508
Trivial fixes to developers' names.


Revision 1.508 - (view) (download) (annotate) - [select for diffs]
Tue Nov 28 17:00:15 2006 UTC (18 years, 11 months ago) by lektu
Branch: MAIN
Changes since 1.507: +26 -33 lines
Diff to previous 1.507
*** empty log message ***


Revision 1.507 - (view) (download) (annotate) - [select for diffs]
Mon Nov 27 15:41:41 2006 UTC (18 years, 11 months ago) by cyd
Branch: MAIN
Changes since 1.506: +5 -0 lines
Diff to previous 1.506
* Makefile.in: Touch only the parts of the share/emacs directory
specific to this version.


Revision 1.506 - (view) (download) (annotate) - [select for diffs]
Sun Nov 26 22:15:39 2006 UTC (18 years, 11 months ago) by cyd
Branch: MAIN
Changes since 1.505: +6 -0 lines
Diff to previous 1.505
* configure.in (HAVE_X86_64_LIB64_DIR): New test.

* configure: Regenerate.


Revision 1.340.2.45.2.12 - (view) (download) (annotate) - [select for diffs]
Tue Nov 21 10:49:07 2006 UTC (18 years, 11 months ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.11: +25 -22 lines
Diff to previous 1.340.2.45.2.11 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 505-522)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Update from CVS: etc/TUTORIAL.cn: Updated.
   - Merge from erc--emacs--22

 * emacs--unicode--0  (patch 137)

   - Merge from emacs--devo--0

 * gnus--rel--5.10  (patch 164-167)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-48


Revision 1.340.2.58 - (view) (download) (annotate) - [select for diffs]
Tue Nov 21 08:56:30 2006 UTC (18 years, 11 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.57: +25 -22 lines
Diff to previous 1.340.2.57 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 505-522)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Update from CVS: etc/TUTORIAL.cn: Updated.
   - Merge from erc--emacs--22

 * gnus--rel--5.10  (patch 164-167)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-137


Revision 1.505 - (view) (download) (annotate) - [select for diffs]
Sun Nov 19 23:41:26 2006 UTC (18 years, 11 months ago) by lektu
Branch: MAIN
Changes since 1.504: +11 -12 lines
Diff to previous 1.504
*** empty log message ***


Revision 1.504 - (view) (download) (annotate) - [select for diffs]
Tue Nov 14 08:21:39 2006 UTC (18 years, 11 months ago) by mituharu
Branch: MAIN
CVS Tags: EMACS_PRETEST_22_0_91
Changes since 1.503: +6 -0 lines
Diff to previous 1.503
*** empty log message ***


Revision 1.503 - (view) (download) (annotate) - [select for diffs]
Fri Nov 10 09:26:02 2006 UTC (18 years, 11 months ago) by nickrob
Branch: MAIN
Changes since 1.502: +0 -10 lines
Diff to previous 1.502
*** empty log message ***


Revision 1.502 - (view) (download) (annotate) - [select for diffs]
Fri Nov 10 00:21:22 2006 UTC (18 years, 11 months ago) by lektu
Branch: MAIN
Changes since 1.501: +1 -0 lines
Diff to previous 1.501
Add "add-log-time-zone-rule: t" to Local Variables section.


Revision 1.501 - (view) (download) (annotate) - [select for diffs]
Wed Nov 8 08:03:09 2006 UTC (18 years, 11 months ago) by mituharu
Branch: MAIN
Changes since 1.500: +7 -0 lines
Diff to previous 1.500
*** empty log message ***


Revision 1.340.2.45.2.11 - (view) (download) (annotate) - [select for diffs]
Tue Nov 7 23:38:08 2006 UTC (18 years, 11 months ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.10: +15 -0 lines
Diff to previous 1.340.2.45.2.10 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 490-504)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * emacs--unicode--0  (patch 130)

   - Merge from emacs--devo--0

 * gnus--rel--5.10  (patch 161-163)

   - Update from CVS
   - Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-46


Revision 1.340.2.57 - (view) (download) (annotate) - [select for diffs]
Tue Nov 7 23:22:46 2006 UTC (18 years, 11 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.56: +15 -0 lines
Diff to previous 1.340.2.56 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 490-504)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 161-163)

   - Update from CVS
   - Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-130


Revision 1.500 - (view) (download) (annotate) - [select for diffs]
Sat Nov 4 14:47:54 2006 UTC (18 years, 11 months ago) by rfrancoise
Branch: MAIN
Changes since 1.499: +1 -0 lines
Diff to previous 1.499
Fix typo.


Revision 1.499 - (view) (download) (annotate) - [select for diffs]
Sat Nov 4 14:44:13 2006 UTC (18 years, 11 months ago) by rfrancoise
Branch: MAIN
Changes since 1.498: +5 -0 lines
Diff to previous 1.498
(bootstrap-clean-before): Use new target `bootstrap-clean' in the leim
subdirectory.


Revision 1.498 - (view) (download) (annotate) - [select for diffs]
Sat Nov 4 03:28:27 2006 UTC (18 years, 11 months ago) by cyd
Branch: MAIN
Changes since 1.497: +4 -0 lines
Diff to previous 1.497
	* configure.in: Enable sparc64/ia64/powerpc FreeBSD builds.


Revision 1.497 - (view) (download) (annotate) - [select for diffs]
Mon Oct 30 14:20:47 2006 UTC (19 years ago) by cyd
Branch: MAIN
Changes since 1.496: +5 -0 lines
Diff to previous 1.496
	* make-dist: Add makefile.w32-in to the man, lispref and lispintro
	directories.


Revision 1.340.2.56 - (view) (download) (annotate) - [select for diffs]
Mon Oct 30 08:54:32 2006 UTC (19 years ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.55: +43 -0 lines
Diff to previous 1.340.2.55 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 476-489)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 153-160)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-127


Revision 1.340.2.45.2.10 - (view) (download) (annotate) - [select for diffs]
Mon Oct 30 08:35:41 2006 UTC (19 years ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.9: +43 -0 lines
Diff to previous 1.340.2.45.2.9 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 476-489)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * emacs--unicode--0  (patch 126-127)

   - Update from CVS
   - Merge from emacs--devo--0

 * gnus--rel--5.10  (patch 153-160)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-44


Revision 1.496 - (view) (download) (annotate) - [select for diffs]
Sun Oct 29 22:09:26 2006 UTC (19 years ago) by cyd
Branch: MAIN
Changes since 1.495: +4 -0 lines
Diff to previous 1.495
	* configure: Regenerate using autoconf 2.59.


Revision 1.495 - (view) (download) (annotate) - [select for diffs]
Sun Oct 29 21:49:24 2006 UTC (19 years ago) by cyd
Branch: MAIN
Changes since 1.494: +4 -0 lines
Diff to previous 1.494
	* configure.in: Enable x86-64 OpenBSD compilation.


Revision 1.494 - (view) (download) (annotate) - [select for diffs]
Sat Oct 28 22:01:09 2006 UTC (19 years ago) by gm
Branch: MAIN
Changes since 1.493: +9 -5 lines
Diff to previous 1.493
*** empty log message ***


Revision 1.493 - (view) (download) (annotate) - [select for diffs]
Sat Oct 28 02:18:41 2006 UTC (19 years ago) by mituharu
Branch: MAIN
Changes since 1.492: +5 -0 lines
Diff to previous 1.492
*** empty log message ***


Revision 1.492 - (view) (download) (annotate) - [select for diffs]
Fri Oct 27 15:39:24 2006 UTC (19 years ago) by cyd
Branch: MAIN
CVS Tags: EMACS_PRETEST_22_0_90
Changes since 1.491: +8 -0 lines
Diff to previous 1.491
	* README: Bump version number to 22.0.90.

	* AUTHORS: Regenerate.

	* configure: Regenerate.


Revision 1.491 - (view) (download) (annotate) - [select for diffs]
Mon Oct 23 19:20:15 2006 UTC (19 years ago) by kifer
Branch: MAIN
Changes since 1.490: +10 -0 lines
Diff to previous 1.490
2006-10-23  Michael Kifer  <kifer@cs.stonybrook.edu>

	* viper-cmd.el (viper-prefix-arg-com): define gg as G0

	* viper-ex.el (ex-read): quote file argument.

	* ediff-diff.el (ediff-same-file-contents): expand file names.

	* ediff-mult.el (ediff-append-custom-diff): quote shell file arguments.


Revision 1.490 - (view) (download) (annotate) - [select for diffs]
Mon Oct 23 15:35:40 2006 UTC (19 years ago) by schwab
Branch: MAIN
Changes since 1.489: +8 -0 lines
Diff to previous 1.489
*** empty log message ***


Revision 1.340.2.45.2.9 - (view) (download) (annotate) - [select for diffs]
Fri Oct 20 02:47:50 2006 UTC (19 years ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.8: +4 -0 lines
Diff to previous 1.340.2.45.2.8 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 460-475)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * emacs--unicode--0  (patch 118-120)
 * gnus--rel--5.10  (patch 145-152)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-41


Revision 1.340.2.45.2.8 - (view) (download) (annotate) - [select for diffs]
Wed Oct 18 02:34:30 2006 UTC (19 years ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.7: +9 -0 lines
Diff to previous 1.340.2.45.2.7 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 447-459)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * emacs--unicode--0  (patch 115-117)
 * gnus--rel--5.10  (patch 141-144)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-40


Revision 1.340.2.55 - (view) (download) (annotate) - [select for diffs]
Sun Oct 15 02:54:09 2006 UTC (19 years ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.54: +4 -0 lines
Diff to previous 1.340.2.54 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 460-475)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 145-152)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-118


Revision 1.489 - (view) (download) (annotate) - [select for diffs]
Tue Oct 3 20:42:40 2006 UTC (19 years ago) by kfstorm
Branch: MAIN
Changes since 1.488: +4 -0 lines
Diff to previous 1.488
*** empty log message ***


Revision 1.340.2.54 - (view) (download) (annotate) - [select for diffs]
Tue Oct 3 05:04:16 2006 UTC (19 years ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.53: +9 -0 lines
Diff to previous 1.340.2.53 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 447-459)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 141-144)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-115


Revision 1.488 - (view) (download) (annotate) - [select for diffs]
Sat Sep 30 09:11:56 2006 UTC (19 years, 1 month ago) by eliz
Branch: MAIN
Changes since 1.487: +4 -0 lines
Diff to previous 1.487
configure


Revision 1.487 - (view) (download) (annotate) - [select for diffs]
Thu Sep 28 05:47:36 2006 UTC (19 years, 1 month ago) by handa
Branch: MAIN
Changes since 1.486: +5 -0 lines
Diff to previous 1.486
*** empty log message ***


Revision 1.260.2.70 - (view) (download) (annotate) - [select for diffs]
Wed Sep 20 06:50:35 2006 UTC (19 years, 1 month ago) by miles
Branch: lexbind
Changes since 1.260.2.69: +5 -0 lines
Diff to previous 1.260.2.69 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 438-446)

   - Update from CVS
   - lisp/url/url-methods.el: Fix format error when http_proxy is empty string
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 137-140)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-29


Revision 1.260.2.69 - (view) (download) (annotate) - [select for diffs]
Wed Sep 20 06:47:25 2006 UTC (19 years, 1 month ago) by miles
Branch: lexbind
Changes since 1.260.2.68: +9 -0 lines
Diff to previous 1.260.2.68 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 399-437)

   - Update from CVS
   - Rcirc update from Ryan Yeske
   - Merge from gnus--rel--5.10
   - Miscellaneous tq-related fixes.

 * gnus--rel--5.10  (patch 126-136)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-28


Revision 1.260.2.68 - (view) (download) (annotate) - [select for diffs]
Wed Sep 20 06:43:59 2006 UTC (19 years, 1 month ago) by miles
Branch: lexbind
Changes since 1.260.2.67: +9 -0 lines
Diff to previous 1.260.2.67 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 383-398)

   - Update from CVS
   - Update from erc--emacs--22
   - Fix ERC bug introduced in last patch
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 123-125)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-27


Revision 1.260.2.67 - (view) (download) (annotate) - [select for diffs]
Wed Sep 20 06:39:38 2006 UTC (19 years, 1 month ago) by miles
Branch: lexbind
Changes since 1.260.2.66: +36 -0 lines
Diff to previous 1.260.2.66 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 343-357)

   - Update from CVS
   - Update for ERC 5.1.3.
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 113-117)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-25


Revision 1.260.2.66 - (view) (download) (annotate) - [select for diffs]
Wed Sep 20 06:36:10 2006 UTC (19 years, 1 month ago) by miles
Branch: lexbind
Changes since 1.260.2.65: +24 -4 lines
Diff to previous 1.260.2.65 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 320-342)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - lisp/play/cookie1.el (cookie): Work properly when there's only one entry
   - Add note about "link" button-class to etc/TODO

 * gnus--rel--5.10  (patch 108-112)

   - Merge from emacs--devo--0
   - Clean up merge mistakes
   - Update from CVS
   - Update from CVS: texi/gnus.texi (Summary Buffer Lines): Fix typo.

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-24


Revision 1.340.2.45.2.7 - (view) (download) (annotate) - [select for diffs]
Wed Sep 20 06:07:43 2006 UTC (19 years, 1 month ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.6: +5 -0 lines
Diff to previous 1.340.2.45.2.6 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 437-446)

   - Update from CVS
   - lisp/url/url-methods.el: Fix format error when http_proxy is empty string
   - Merge from gnus--rel--5.10

 * emacs--unicode--0  (patch 111)

   - Merge from emacs--devo--0

 * gnus--rel--5.10  (patch 137-140)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-38


Revision 1.340.2.53 - (view) (download) (annotate) - [select for diffs]
Wed Sep 20 06:04:20 2006 UTC (19 years, 1 month ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.52: +5 -0 lines
Diff to previous 1.340.2.52 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 437-446)

   - Update from CVS
   - lisp/url/url-methods.el: Fix format error when http_proxy is empty string
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 137-140)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-111


Revision 1.486 - (view) (download) (annotate) - [select for diffs]
Fri Sep 15 17:26:29 2006 UTC (19 years, 1 month ago) by jpb
Branch: MAIN
Changes since 1.485: +5 -0 lines
Diff to previous 1.485
*** empty log message ***


Revision 1.340.2.45.2.6 - (view) (download) (annotate) - [select for diffs]
Thu Sep 14 09:38:53 2006 UTC (19 years, 1 month ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.5: +9 -0 lines
Diff to previous 1.340.2.45.2.5 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 423-436)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * emacs--unicode--0  (patch 109-110)

   - Merge from emacs--devo--0

 * gnus--rel--5.10  (patch 131-136)

   - Update from CVS
   - Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-37


Revision 1.340.2.52 - (view) (download) (annotate) - [select for diffs]
Thu Sep 14 09:23:51 2006 UTC (19 years, 1 month ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.51: +9 -0 lines
Diff to previous 1.340.2.51 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 427-436)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 134-136)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-110


Revision 1.485 - (view) (download) (annotate) - [select for diffs]
Tue Sep 12 16:43:23 2006 UTC (19 years, 1 month ago) by eggert
Branch: MAIN
Changes since 1.484: +5 -0 lines
Diff to previous 1.484
* etc/NEWS: In terminal-oriented subshells, the EMACS environment
variable now defaults to Emacs's absolute file name, instead of
to "t".
* etc/PROBLEMS: Adjust tcsh advice for this.
* make-dist (EMACS): Exit and fail if the EMACS environment
variable is set to something other than an absolute file name.
* lisp/comint.el (comint-exec-1): Set EMACS to the full name of Emacs,
not to "t".
* lisp/progmodes/compile.el (compilation-start): Likewise.
* lisp/progmodes/idlwave.el (idlwave-rescan-asynchronously):
Don't use expand-file-name on invocation-directory, since this
might mishandle special characters in invocation-directory.
* man/faq.texi (Escape sequences in shell output): EMACS is now set
to Emacs's absolute file name, not to "t".
(^M in the shell buffer): Likewise.
* man/misc.texi (Interactive Shell): Likewise.


Revision 1.484 - (view) (download) (annotate) - [select for diffs]
Thu Sep 7 13:22:33 2006 UTC (19 years, 1 month ago) by kfstorm
Branch: MAIN
Changes since 1.483: +4 -0 lines
Diff to previous 1.483
*** empty log message ***


Revision 1.340.2.45.2.5 - (view) (download) (annotate) - [select for diffs]
Mon Aug 28 04:15:45 2006 UTC (19 years, 2 months ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.4: +9 -0 lines
Diff to previous 1.340.2.45.2.4 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 382-398)

   - Update from CVS
   - Update from erc--emacs--22
   - Fix ERC bug introduced in last patch
   - Merge from gnus--rel--5.10

 * emacs--unicode--0  (patch 101-104)

   - Merge from emacs--devo--0
   - Update from CVS

 * gnus--rel--5.10  (patch 123-125)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-31


Revision 1.340.2.51 - (view) (download) (annotate) - [select for diffs]
Wed Aug 16 14:08:43 2006 UTC (19 years, 2 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.50: +9 -0 lines
Diff to previous 1.340.2.50 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 382-398)

   - Update from CVS
   - Update from erc--emacs--22
   - Fix ERC bug introduced in last patch
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 123-125)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-101


Revision 1.483 - (view) (download) (annotate) - [select for diffs]
Wed Aug 16 09:04:47 2006 UTC (19 years, 2 months ago) by schwab
Branch: MAIN
Changes since 1.482: +5 -0 lines
Diff to previous 1.482
*** empty log message ***


Revision 1.482 - (view) (download) (annotate) - [select for diffs]
Wed Aug 16 04:57:19 2006 UTC (19 years, 2 months ago) by rms
Branch: MAIN
Changes since 1.481: +4 -0 lines
Diff to previous 1.481
*** empty log message ***


Revision 1.340.2.45.2.4 - (view) (download) (annotate) - [select for diffs]
Thu Jul 20 23:58:18 2006 UTC (19 years, 3 months ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.3: +36 -0 lines
Diff to previous 1.340.2.45.2.3 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 343-356)

   - Update from CVS
   - Update for ERC 5.1.3.
   - Merge from gnus--rel--5.10

 * emacs--unicode--0  (patch 90-91)
 * gnus--rel--5.10  (patch 113-115)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-23


Revision 1.340.2.50 - (view) (download) (annotate) - [select for diffs]
Wed Jul 19 00:42:51 2006 UTC (19 years, 3 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.49: +36 -0 lines
Diff to previous 1.340.2.49 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 343-356)

   - Update from CVS
   - Update for ERC 5.1.3.
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 113-115)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-90


Revision 1.481 - (view) (download) (annotate) - [select for diffs]
Fri Jul 14 12:05:02 2006 UTC (19 years, 3 months ago) by eliz
Branch: MAIN
Changes since 1.480: +6 -0 lines
Diff to previous 1.480
ChangeLog


Revision 1.480 - (view) (download) (annotate) - [select for diffs]
Thu Jul 13 22:52:49 2006 UTC (19 years, 3 months ago) by kfstorm
Branch: MAIN
Changes since 1.479: +5 -1 lines
Diff to previous 1.479
*** empty log message ***


Revision 1.479 - (view) (download) (annotate) - [select for diffs]
Sun Jul 9 01:58:38 2006 UTC (19 years, 3 months ago) by rms
Branch: MAIN
Changes since 1.478: +5 -1 lines
Diff to previous 1.478
*** empty log message ***


Revision 1.478 - (view) (download) (annotate) - [select for diffs]
Sun Jul 9 00:22:22 2006 UTC (19 years, 3 months ago) by kfstorm
Branch: MAIN
Changes since 1.477: +5 -0 lines
Diff to previous 1.477
*** empty log message ***


Revision 1.477 - (view) (download) (annotate) - [select for diffs]
Sat Jul 8 16:18:51 2006 UTC (19 years, 3 months ago) by eliz
Branch: MAIN
Changes since 1.476: +8 -0 lines
Diff to previous 1.476
ChangeLog


Revision 1.476 - (view) (download) (annotate) - [select for diffs]
Fri Jul 7 11:20:50 2006 UTC (19 years, 3 months ago) by eliz
Branch: MAIN
Changes since 1.475: +5 -0 lines
Diff to previous 1.475
*** empty log message ***


Revision 1.475 - (view) (download) (annotate) - [select for diffs]
Fri Jul 7 08:21:54 2006 UTC (19 years, 3 months ago) by kfstorm
Branch: MAIN
Changes since 1.474: +4 -0 lines
Diff to previous 1.474
*** empty log message ***


Revision 1.340.2.45.2.3 - (view) (download) (annotate) - [select for diffs]
Fri Jul 7 03:05:34 2006 UTC (19 years, 3 months ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.2: +24 -4 lines
Diff to previous 1.340.2.45.2.2 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 320-342)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - lisp/play/cookie1.el (cookie): Work properly when there's only one entry
   - Add note about "link" button-class to etc/TODO

 * emacs--unicode--0  (patch 86-87)

   - Merge from emacs--devo--0
   - Update from CVS

 * gnus--rel--5.10  (patch 108-112)

   - Merge from emacs--devo--0
   - Clean up merge mistakes
   - Update from CVS
   - Update from CVS: texi/gnus.texi (Summary Buffer Lines): Fix typo.

2006-07-05  Romain Francoise  <romain@orebokech.com>

   * make-dist (top-level): Add CONTRIBUTE.

2006-07-04  Richard Stallman  <rms@gnu.org>

   * CONTRIBUTE: Much rewrite.

2006-07-04  Nick Roberts  <nickrob@snap.net.nz>

   * CONTRIBUTE: New file.

2006-06-25  Kim F. Storm  <storm@cua.dk>

   * AUTHORS: Regenerate.

2006-06-24  Eli Zaretskii  <eliz@gnu.org>

   * INSTALL: Mention www.nongnu.org pages that list free Unicode fonts.

2006-06-27  Chong Yidong  <cyd@stupidchicken.com>

   * admin/FOR-RELEASE: Checking of info.texi done.

2006-07-05  Kenichi Handa  <handa@m17n.org>

   * etc/HELLO: Add a paragraph for non-ASCII examples at the head. Add
   Bulgarian and Hungarian.  Add more "hello"s to Danish and Swedish.

2006-07-03  Bill Wohler  <wohler@newt.com>

   Release MH-E version 8.0.2.

   * etc/NEWS, etc/MH-E-NEWS: Update for MH-E release 8.0.2.

2006-07-03  Carsten Dominik  <dominik@science.uva.nl>

   * etc/orgcard.tex (section{Agenda Views}): Document `s' key to save
   all org-mode buffers.

2006-06-30  Francesco Potort,Al(B  <pot@gnu.org>

   * etc/etags.1: -m and -M options do not exist.

2006-06-29  Carsten Dominik  <dominik@science.uva.nl>

   * etc/orgcard.tex (section{Structure Editing}): Document checkbox
   toggling.

2006-06-28  Juri Linkov  <juri@jurta.org>

   * etc/grep.txt (Local Variables): Move to end of file.

2006-06-28  Reiner Steib  <Reiner.Steib@gmx.de>

   * etc/Makefile: Add rules for refcards.

   * etc/de-refcard.ps, etc/fr-refcard.ps, etc/pt-br-refcard.ps: Regenerate.

2006-06-24  Nick Roberts  <nickrob@snap.net.nz>

   * etc/NEWS: Remove duplicate entries.

2006-06-23  Carsten Dominik  <dominik@science.uva.nl>

   * etc/orgcard.tex (section{LaTeX and cdlatex-mode}): New section.

2006-06-23  Kim F. Storm  <storm@cua.dk>

   * etc/DEBUG: Mention `pv variable' to print value of Lisp variables.
   Mention `xpr' and fix example to use it.  Add section describing
   commands such as `pit' that are useful for debugging redisplay
   related problems.

2006-06-22  Kim F. Storm  <storm@cua.dk>

   * etc/HELLO (Local Variables): Move to end of file.

2006-06-20  Bill Wohler  <wohler@newt.com>

   Release MH-E version 8.0.1.

   * etc/NEWS, etc/MH-E-NEWS: Update for MH-E release 8.0.1.

2006-07-07  Kenichi Handa  <handa@m17n.org>

   * etc/HELLO: Sync with HEAD.

2006-07-05  Richard Stallman  <rms@gnu.org>

   * lisp/files.el (abbreviate-file-name): Add save-match-data.

2006-07-03  Richard Stallman  <rms@gnu.org>

   * lisp/faces.el (read-face-name): Doc fix.

2006-07-05  Chong Yidong  <cyd@stupidchicken.com>

   * lisp/net/goto-addr.el (goto-address): Mark as safe for local evals.

2006-07-05  Andre Spiegel  <spiegel@gnu.org>

   * lisp/vc.el (vc-diff-internal): Fix prev change.

2006-07-05  Thien-Thi Nguyen  <ttn@gnu.org>

   * lisp/emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Use eval-buffer.
   * lisp/play/dunnet.el (dun-load-d, dun-eval): Likewise.

2006-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>

   * lisp/thingatpt.el (symbol-at-point): Don't use `form-at-point' which
   fails if the symbol contains chars like ( or '.
   (bounds-of-thing-at-point): Remove unused vars `end' and `beg'.
   (thing-at-point-bounds-of-url-at-point): Remove unused vars `url' and
   `short'.

2006-07-04  Kenichi Handa  <handa@m17n.org>

   * lisp/international/mule-cmds.el (set-language-info): If LANG-ENV is
   the current one, don't call set-language-environment, but call one
   of set-language-environment-XXX to make INFO effective now.
   (set-language-environment): Call set-language-environment-XXX
   functions instead of doing the various setups directly.
   (set-language-environment-coding-systems): Delete argument eol-type.
   (set-language-environment-input-method)
   (set-language-environment-nonascii-translation)
   (set-language-environment-charset)
   (set-language-environment-fontset)
   (set-language-environment-unibyte): New functions.

2006-07-03  Luc Teirlinck  <teirllm@auburn.edu>

   * lisp/locate.el (locate-update-when-revert): New option.
   (locate-update-path): New option (suggested by Michael Albinus).
   (locate-prompt-for-command): Whitespace change.
   (locate-update): No longer offer to update the locate database by
   default.  Implement the two new options.

2006-07-04  Nick Roberts  <nickrob@snap.net.nz>

   * lisp/tooltip.el: Move comment about track-mouse...

   * lisp/progmodes/gud.el: ...to here.

2006-07-03  Chong Yidong  <cyd@stupidchicken.com>

   * lisp/facemenu.el (facemenu-listed-faces): New var.
   (facemenu-unlisted-faces): Variable deleted.
   (facemenu-add-new-face): Use facemenu-listed-faces.

   * lisp/emulation/viper-init.el, lisp/calendar/calendar.el:
   * lisp/progmodes/make-mode.el: Delete calls to facemenu-unlisted-faces.

2006-07-03  Carsten Dominik  <dominik@science.uva.nl>

   * lisp/textmodes/org.el (org-mode): Remove no invalid settings for
   calc embedded mode.
   (org-mode-p): New defsubst.
   (org-save-all-org-buffers): New function.
   (org-first-headline-recenter): Enclose outline-regexp in group
   delimiters.
   (org-set-tags): Keep single space after stars.

2006-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>

   * lisp/window.el (set-window-text-height): Only set window-min-height to
   1 if that's the requested size.

   * lisp/diff-mode.el (diff-find-file-name): Obey cvs-pcl-cvs-dirchange-re.
   (diff-unified->context, diff-context->unified)
   (diff-reverse-direction): Make sure the end marker stays at the end.
   (diff-mode): Add the keymap table at the end of docstring.
   Use lexical-let rather than constructing a closure manually.

   * lisp/files.el (find-file-noselect-1): Remove unused var assignment.
   (hack-local-variables-confirm): Print lists of strings as lists of
   strings rather than lists of symbols.
   (abbreviate-file-name, hack-local-variables-prop-line):
   Use match-string.
   (hack-one-local-variable): Move `make-local-variable' nearer its use.
   (recover-session-finish): Use line-end-position.

2006-07-02  Michael Albinus  <michael.albinus@gmx.de>

   * lisp/net/tramp.el (tramp-handle-shell-command): Preserve current-buffer.

2006-07-02  Daniel Pfeiffer  <occitan@esperanto.org>

   * lisp/progmodes/make-mode.el (makefile-macroassign-regex):
   Accept preceding keyword.
   (makefile-gmake-statements): Reorganize, now that makepp has
   "override" and also handle forgotten "override define".
   (makefile-makepp-statements): Add new "global", "override export"
   and "override global".

2006-06-30  Juanma Barranquero  <lekktu@gmail.com>

   * lisp/progmodes/ada-mode.el (ada-which-compiler, ada-mode-menu)
   (ada-compile-mouse-goto-error, ada-deactivate-properties)
   (ada-no-auto-case): Fix typos in docstrings.

2006-06-30  Nick Roberts  <nickrob@snap.net.nz>

   * lisp/info.el (Info-find-node-2): Search for makeinfo version more
   carefully.

2006-06-29  Carsten Dominik  <dominik@science.uva.nl>

   * lisp/textmodes/org.el (org-prepare-agenda-buffers):
   Use `invisible-OK' argument for `org-end-of-subtree'.
   (org-export-cleanup-toc-line): Rename from `org-html-cleanup-toc-line'.
   (org-beginning-of-item): Fix bug in regular expression for white line.
   (org-export-as-html): Enforce space after bullet in plain list items.
   (org-set-autofill-regexps): Require space after plain list bullet
   for paragraph-start.
   (org-ts-regexp3): New constant.
   (org-at-timestamp-p): New optional argument ALSO-INACTIVE.
   (org-timestamp-up-day, org-timestamp-down-day)
   (org-timestamp-change): Work with inactive timestamps.
   (org-ts-regexp1): Don't allow brackets in time stamps.

2006-06-29  Nick Roberts  <nickrob@snap.net.nz>

   * lisp/help-mode.el (help-xref-symbol-regexp): Add property as a keyword
   for ignoring links.

   * lisp/faces.el (read-face-name): Use it.

2006-06-28  Juri Linkov  <juri@jurta.org>

   * lisp/buff-menu.el (list-buffers-noselect): Compare Info file
   with the string "dir" to detect Info directory.

   * lisp/complete.el (partial-completion-mode): In lambda for
   `choose-completion-string-functions' use full function signature
   with 4 args, and move point to the end of the minibuffer only if arg
   `mini-p' is non-nil.

2006-06-28  John Paul Wallington  <jpw@pobox.com>

   * lisp/ibuffer.el (ibuffer-mode): Doc fix.

2006-06-28  Carsten Dominik  <dominik@science.uva.nl>

   * lisp/textmodes/org.el (org-context): New contexts :item-bullet,
   :latex-fragment, :latex-preview.
   (org-overlays-at, org-overlay-start, org-overlay-end):
   New compatibility functions.
   (org-inside-LaTeX-fragment-p): More accurate matching, using the
   exact regexp that will be used during export.
   (org-latex-regexps): New variable.
   (org-cdlatex-mode): Improve advice for `texmathp'.
   (turn-on-org-cdlatex): New function.

2006-06-28  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>

   * lisp/term/mac-win.el (mac-handle-font-selection): Change keys of
   mac-atsu-font-table from strings to numbers.
   (mac-ts-caret-position): Use also when cursor-type is nil.
   (mac-ts-update-active-input-area): Add Mac OS Classic support.
   Relax condition for using overlay strings.
   Use mac-ts-caret-position face when cursor-type is nil.

2006-06-26  Kim F. Storm  <storm@cua.dk>

   * lisp/help.el (view-emacs-news): Declare `res' in the right let* form.

2006-06-25  Michael Albinus  <michael.albinus@gmx.de>

   * lisp/net/rcompile.el (remote-compile): Replace ange-ftp based
   implementation by Tramp functions.  Based on a patch published by
   Marc Abramowitz <msabramo@gmail.com>.

   * lisp/net/tramp.el (tramp-unload-tramp): Provide a doc string.

2006-06-24  Yoshinori Koseki  <kose@meadowy.org>

   * lisp/international/fontset.el (setup-default-fontset): Fix a typo in
   the "Oriya-Akruti" registry name.

2006-06-23  Lars Hansen  <larsh@soem.dk>

   * lisp/desktop.el (desktop-full-file-name): New function.
   (desktop-kill, desktop-save, desktop-remove, desktop-read)
   (desktop-revert): Use it.
   (desktop-clear, desktop-save, desktop-remove): Add autoload cookie.
   (desktop-after-read-hook): Add option list-buffers.
   (desktop-locals-to-save): Add tab-width.
   (desktop-save-mode, desktop-no-desktop-file-hook, desktop-save-hook):
   Fix docstring.

2006-06-23  Carsten Dominik  <dominik@science.uva.nl>

   * lisp/textmodes/org.el (org-cdlatex-mode-map)
   (org-cdlatex-texmathp-advice-is-done): New variables.
   (org-cdlatex-mode): New minor mode.
   (org-inside-LaTeX-fragment-p, org-try-cdlatex-tab): New functions.
   (org-cdlatex-underscore-caret, org-cdlatex-math-modify): New commands.
   (org-export-with-archived-trees): New option.
   (org-open-file): Remove the call to `convert-standard-filename'.
   (org-archive-tag, org-agenda-skip-archived-trees)
   (org-cycle-open-archived-trees)
   (org-sparse-tree-open-archived-trees): New options.
   (org-cycle-hide-archived-subtrees, org-hide-archived-subtrees)
   (org-toggle-tag, org-prepare-agenda-buffers, org-agenda-skip):
   New functions.
   (org-agenda-toggle-archive-tag, org-toggle-archive-tag): New commands.
   (org-agenda-mode-map): Add binding of `org-agenda-toggle-archive-tag'.
   (org-mode-map): Add binding for `org-toggle-archive-tag'.
   (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
   Call `org-prepare-agenda-buffers'.
   (org-occur, org-scan-tags): Call `org-hide-archived-subtrees'.
   (org-file-apps, org-file-apps-defaults-gnu)
   (org-file-apps-defaults-macosx, org-file-apps-defaults-windowsnt):
   Handle remote files by forcing them to be opened in Emacs.

2006-06-23  Andre Spiegel  <spiegel@gnu.org>

   * lisp/vc.el (vc-diff-knows-L): New variable.
   (vc-diff-internal): Use it to handle "diff" programs that don't
   understand -L.  This works automatically, no user action is necessary.

2006-06-23  Daniel Brockman  <daniel@brockman.se>

   * lisp/net/rcirc.el (rcirc-default-user-full-name): Default to
   `rcirc-default-user-name' instead of `rcirc-user-name' (which no
   longer exists).
   (rcirc-process-list): Check `buffer-live-p' before attempting to
   switch to a buffer.

2006-06-23  Ryan Yeske  <rcyeske@gmail.com>

   * lisp/net/rcirc.el (rcirc-mode): Fix initialization of coding systems
   based on rcirc-coding-system-alist.

2006-06-23  Martin Rudalics  <rudalics@gmx.at>

   * lisp/cus-edit.el (customize-apropos): A better error message.
   (top level) <debug-ignored-errors>: Extend and update the list of
   ignored error messages.

2006-06-23  Michael Ernst  <mernst@alum.mit.edu>

   * lisp/complete.el (PC-do-completion): Retain capitalization of user
   input, when possible, even if completion-ignore-case is set.

2006-06-23  Eli Zaretskii  <eliz@gnu.org>

   * lisp/generic-x.el (bat-generic-mode): Support .cmd files.

   * lisp/dos-w32.el (top level): Use find-file-not-found-functions
   instead of the obsolete find-file-not-found-hooks.

2006-06-22  Kim F. Storm  <storm@cua.dk>

   * lisp/progmodes/grep.el (grep-mode-font-lock-keywords): Correct regexps
   to recognize mode name containing submodes, such as Grep/lw.

2006-06-21  Kim F. Storm  <storm@cua.dk>

   * lisp/simple.el (line-move-1): Check for move-end-of-line instead of
   end-of-line when setting temporary-goal-column.

2006-06-21  Miles Bader  <miles@gnu.org>

   * lisp/play/cookie1.el (cookie): Work properly when there's only one entry.

2006-06-21  Nick Roberts  <nickrob@snap.net.nz>

   * lisp/progmodes/gdb-ui.el (gdb-exited): Ensure overlay arrow gets killed.
   (gdb-frame-handler): Generalize frame regexp for templates.

2006-06-20  Glenn Morris  <rgm@gnu.org>

   * lisp/calendar/appt.el (appt-display-format): Default value must be
   one of the customize options.

2006-06-20  Dan Nicolaescu  <dann@ics.uci.edu>

   * lisp/term/xterm.el (terminal-init-xterm): Update key availability info.
   Bind C-return.

   * lisp/term.el (term-delete-lines, term-insert-lines): Clarify comments.

2006-06-20  Chong Yidong  <cyd@stupidchicken.com>

   * lisp/files.el (hack-local-variables): Run `hack-local-variables-hook'
   whether or not a local variables list is defined.

   * lisp/msb.el (msb): Move `sit-for' hack here to handle both
   "mouse-down and drag" and "mouse-up and select" situations.
   (mouse-select-buffer): Move `sit-for' hack to `msb'.

2006-07-07  Kenichi Handa  <handa@m17n.org>

   * lisp/international/mule-cmds.el (set-language-info): Fix synching
   with HEAD.
   (set-language-environment): Likewise.
   (standard-display-european-internal): Sync with HEAD.
   (set-language-environment-nonascii-translation): Fix synching with
   HEAD.
   (set-language-environment-fontset): Delete it.
   (set-language-environment-unibyte): Fix synching with HEAD.

2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>

   * lisp/gnus/gnus-diary.el (gnus-user-format-function-d)
   (gnus-user-format-function-D): Autoload.

2006-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>

   * lisp/gnus/gnus-group.el (gnus-group-select-group): Doc fix.
   [ See 2004-05-19 change on the trunk. ]

2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>

   * lisp/gnus/rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.

2006-07-03  Bill Wohler  <wohler@newt.com>

   Release MH-E version 8.0.2.

   * lisp/mh-e/mh-e.el (Version, mh-version): Update for release 8.0.2.

2006-07-03  Ted Phelps  <phelps@gnusto.com>  (tiny change)

   * lisp/mh-e/mh-tool-bar.el (mh-tool-bar-define): Fix XEmacs' vector-list so
   it refers to the icons in mh-xemacs-icon-map instead of trying to
   declare the icons in situ. This allows mh-tool-bar.el to be
   compiled under XEmacs. Remove initial value for
   mh-tool-bar-folder-buttons, mh-tool-bar-show-buttons,
   mh-tool-bar-letter-buttons. The MH-E icons now appear in XEmacs.
   In mh-tool-bar-init, check for mh-xemacs-use-tool-bar-flag sooner.
   This allows MH-E to be used in XEmacs in a tty (closes SF
   #1506846).

2006-07-03  Bill Wohler  <wohler@newt.com>

   * lisp/mh-e/mh-e.el: Require mh-buffers and mh-compat before mh-xemacs now
   that mh-xemacs needs functions in mh-compat.

2006-06-29  Bill Wohler  <wohler@newt.com>

   * lisp/mh-e/mh-search.el (mh-search, mh-index-group-by-folder): Add "the" in
   loop construct to be consistent with other loops, and because
   edebug doesn't work without it.

2006-06-29  Ted Phelps  <phelps@gnusto.com>  (tiny change)

   * lisp/mh-e/mh-search.el (mh-folder-exists-p): Strip + from folder to avoid
   redundant +s in regexp (closes SF #1514424).

2006-06-29  Sergey Poznyakoff  <gray@Mirddin.farlep.net>  (tiny change)

   * lisp/mh-e/mh-mime.el (mh-mime-save-parts): Add -store option to
   mhn (closes SF #1513140).

2006-06-20  Bill Wohler  <wohler@newt.com>

   Release MH-E version 8.0.1.

   * lisp/mh-e/mh-e.el (Version, mh-version): Update for release 8.0.1.

2006-07-05  Richard Stallman  <rms@gnu.org>

   * lispref/text.texi (Buffer Contents): Add example of text props
   in result of buffer-substring.
   (Text Properties): Explain better about use of specific property names.
   (Property Search): Some cleanups; reorder some functions.

   * lispref/keymaps.texi (Changing Key Bindings): Cleanup.
   Add xref to Key Binding Conventions.

   * lispref/display.texi (Attribute Functions): Add examples for
   face-attribute-relative-p.

   * lispref/tips.texi (Coding Conventions): Cleanup last change.

2006-07-05  Karl Berry  <karl@gnu.org>

   * lispref/elisp.texi: use @fonttextsize 10pt, a la emacs.texi.
   and remove @setchapternewpage odd.
   Result is 1013 pages, down from 1100.

   * lispref/anti.texi, lispref/customize.texi, lispref/display.texi,
   lispref/internals.texi, lispref/minibuf.texi, lispref/modes.texi lispref/tips.texi:
   fix overfull/underfull boxes.

2006-07-05  Thien-Thi Nguyen  <ttn@gnu.org>

   * lispref/edebug.texi (Instrumenting):
   Add Edebug-specific findex for eval-buffer.
   * lispref/loading.texi (Loading):
   Replace eval-current-buffer with eval-buffer.

2006-06-30  Nick Roberts  <nickrob@snap.net.nz>

   * lispref/locals.texi (Standard Buffer-Local Variables): Update the list
   of variables.

2006-06-26  Nick Roberts  <nickrob@snap.net.nz>

   * lispref/files.texi (File Name Completion): Point user to the node
   "Reading File Names".

2006-06-24  Eli Zaretskii  <eliz@gnu.org>

   * lispref/files.texi (Contents of Directories): Document case-insensitive
   behavior on respective filesystems.

   * lispref/objects.texi (Character Type): Document that Emacs signals an
   error for unsupported Unicode characters specified as \uNNNN.

2006-07-05  Richard Stallman  <rms@gnu.org>

   * man/faq.texi (Scrolling only one line): Fix xref.

2006-07-05  Thien-Thi Nguyen  <ttn@gnu.org>

   * man/building.texi (Lisp Eval):
   * man/faq.texi (Evaluating Emacs Lisp code):
   Throughout, replace eval-current-buffer with eval-buffer.

2006-07-05  Nick Roberts  <nickrob@snap.net.nz>

   * man/mule.texi (Coding Systems, Specify Coding): Link descriptions
   of character translation.

2006-07-04  Nick Roberts  <nickrob@snap.net.nz>

   * man/rmail.texi (Remote Mailboxes): Add missing @code keyword.

2006-07-03  Karl Berry  <karl@gnu.org>

   * man/emacs.texi (\hbadness): Set to 6000 so we aren't bothered by
   not-too-underfull hboxes in the TeX output.
   * man/abbrevs.texi, man/buffers.texi, man/building.texi, man/calendar.texi,
   man/cmdargs.texi, man/custom.texi, man/dired.texi, man/macos.texi,
   man/maintaining.texi, man/misc.texi, man/mule.texi, man/programs.texi, man/rmail.texi,
   man/sending.texi, man/text.texi: fix overfull/underfull boxes.

2006-07-03  Romain Francoise  <romain@orebokech.com>

   * man/m-x.texi (M-x): Fix.

2006-07-03  Richard Stallman  <rms@gnu.org>

   * man/rcirc.texi (Scrolling conservatively): Fix xref.

   * man/pcl-cvs.texi (Viewing differences): Usage fix.

   * man/search.texi (Other Repeating Search): filename -> file name.

   * man/misc.texi (Narrowing): Minor cleanups.

   * man/files.texi (Visiting): filename -> file name.

   * man/emacs.texi (Top): Update subnode menus.

   * man/mule.texi (Coding Systems): Move char translation stuff here.
   (Specify Coding, Output Coding): New nodes, out of Recognize Coding.
   (Recognize Coding): Substantial local rewrites.
   (International): Update menu.

   * man/display.texi (Auto Scrolling): New node, broken out of Scrolling.
   (Scrolling): Substantial local rewrites.
   (Display): Update menu and intro.

   * man/dired.texi: filename -> file name.

   * man/custom.texi (Safe File Variables): Texinfo usage fix.

2006-07-03  Ted Zlatanov  <tzz@lifelogs.com>

   * man/help.texi, man/m-x.texi: Lots of cleanups.

2006-07-03  Carsten Dominik  <dominik@science.uva.nl>

   * man/org.texi (Agenda commands): Document `s' key to save all org-mode
   buffers.

2006-06-30  Eli Zaretskii  <eliz@gnu.org>

   * man/msdog.texi (ls in Lisp, Windows Keyboard, Windows Mouse)
   (Windows Processes, Windows Misc): Shorten the printed version by
   selectively conditioning less important portions by @ifnottex.

2006-06-30  Ralf Angeli  <angeli@caeruleus.net>

   * man/pcl-cvs.texi (Customizing Faces): Remove -face suffix from face
   names.  Mention `cvs-msg' face.

2006-06-29  Carsten Dominik  <dominik@science.uva.nl>

   * man/org.texi (Checkboxes): New section.

2006-06-28  Carsten Dominik  <dominik@science.uva.nl>

   * man/org.texi (Embedded LaTeX): Fix typos and implement small improvements
   throughout this chapter.

2006-06-27  Chong Yidong  <cyd@stupidchicken.com>

   * man/info.texi (Help-Small-Screen): Clarify placement of "All" and "Top"
   text for standalone vs Emacs info.
   (Help): Clarify header line description.  Use mouse-1 for clicks.
   (Help-P): Use mouse-1 for clicks.
   (Help-^L): "Top" and "All" not displayed with dashes in Emacs.
   (Help-^L, Help-M, Help-Int, Search Index, Go to node)
   (Choose menu subtopic): Remove gratuitous Emacs command names.
   (Help-FOO): Put usual behavior first.
   (Help-Xref): Clicking on xrefs works in Emacs.
   (Search Text): Clarify what the default behavior is.
   (Create Info buffer): Fix Emacs window/X window confusion.
   (Emacs Info Variables): Fix for new Emacs init file behavior.

2006-06-27  Richard Stallman  <rms@gnu.org>

   * man/mini.texi (Minibuffer File): Minor cleanup.

2006-06-25  Nick Roberts  <nickrob@snap.net.nz>

   * man/frames.texi (XTerm Mouse) Rename to...
   (Text-Only Mouse): ...this.  Mention t-mouse-mode.

   * man/emacs.texi (Top): Use new node name.

2006-06-24  Eli Zaretskii  <eliz@gnu.org>

   * man/emacs.texi (Top): Update the detailed menu according to changes in
   msdog.texi.

   * man/msdog.texi (Windows Keyboard): New section.
   (Windows Mouse): New section.
   (Windows System Menu): Remove section (text merged with "Windows
   Keyboard").
   (Windows Misc): New section.

   * man/dired.texi (Dired Enter): Refer to msdog.texi for ls-lisp emulation.

   * man/msdog.texi (ls in Lisp): New section.

   * man/files.texi (Visiting): Document case-insensitive wildcard matching
   under find-file-wildcards.

2006-06-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>

   * man/gnus.texi (Summary Buffer Lines): Fix typo.

2006-06-23  Carsten Dominik  <dominik@science.uva.nl>

   * man/org.texi (Embedded LaTeX): New chapter.
   (Archiving): Section rewritten.
   (Enhancing text): Some parts moved to the new chapter about LaTeX.

2006-06-20  Bill Wohler  <wohler@newt.com>

   Release MH-E manual version 8.0.1.

   * man/mh-e.texi (VERSION, EDITION, UPDATED, UPDATE-MONTH): Update for
   release 8.0.1.
   (Preface): Depend on GNU mailutils 1.0 and higher.

2006-07-05  Chong Yidong  <cyd@stupidchicken.com>

   * src/insdel.c (prepare_to_modify_buffer): For an indirect buffer, do
   clash detection using the base buffer.

   * src/puresize.h (BASE_PURESIZE): Increment to 1210500.

2006-07-04  Kim F. Storm  <storm@cua.dk>

   * src/xterm.c (x_delete_display): Don't free or derefence NULL pointers.

2006-07-04  Kenichi Handa  <handa@m17n.org>

   * src/fontset.c (Fset_overriding_fontspec_internal): Check if we need
   to update Voverriding_fontspec_alist.

2006-07-03  Richard Stallman  <rms@gnu.org>

   * src/xfns.c (Fx_create_frame): Move unwind_create_frame setup down.

   * src/xfaces.c (Fface_attribute_relative_p): Doc fix.

   * src/textprop.c (Fget_char_property_and_overlay): Doc fix.

   * src/eval.c (Fdefvaralias): Doc fix.

2006-07-03  Kim F. Storm  <storm@cua.dk>

   * src/dispnew.c (sit_for): Fix preempt condition.

2006-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>

   * src/lread.c (read_filtered_event): Treat select-window just like
   switch-frame.

2006-07-02  Kim F. Storm  <storm@cua.dk>

   * src/xdisp.c (display_tool_bar_line): Skip glyphs which are too big
   to ever fit the tool-bar,
   (MAX_FRAME_TOOL_BAR_HEIGHT): New macro.
   (tool_bar_lines_needed): Use unused mode-line row as temp_row.
   (redisplay_tool_bar): Only clear desired matrix if we actually
   change the tool-bar window height.  Only try to make the tool-bar
   window bigger if there is actually room for it.

2006-06-30  Ralf Angeli  <angeli@caeruleus.net>

   * src/w32term.c (x_make_frame_visible): Use SystemParametersInfo with
   SPI_GETWORKAREA to find the dimensions of the screen work area,
   and adjust vertical position of the frame in order to avoid being
   covered by the task bar.

   * src/w32fns.c (w32_createwindow): Use CW_USEDEFAULT instead of
   f->left_pos and SH_SHOW instead of f->top_pos in the call to
   CreateWindow.  Record the actual position in f->left_pos and
   f->top_pos.

2006-06-30  John Paul Wallington  <jpw@pobox.com>

   * src/w32console.c (syms_of_ntterm) <w32-use-full-screen-buffer>:
   Doc fix - default value has changed.

2006-06-28  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>

   * src/mac.c [!TARGET_API_MAC_CARBON]: Don't include FixMath.h or Scrap.h.

   * src/macfns.c (Fx_create_frame): Apply 2006-06-24 change for xfns.c.

   * src/macgui.h (USE_MAC_TSM) [TARGET_API_MAC_CARBON]: Set default to 1.

   * src/macterm.c (Qeql): Add extern.
   (x_set_mouse_pixel_position) [MAC_OSX]: Use CGWarpMouseCursorPosition.
   (fm_style_face_attributes_alist) [USE_ATSUI]: New variable.
   (syms_of_macterm) [USE_ATSUI]: Initialize and staticpro it.
   Change keys of Vmac_atsu_font_table from strings to numbers.
   (fm_style_to_face_attributes) [USE_ATSUI]: New function.
   (init_font_name_table) [USE_ATSUI]: Use it.
   (saved_ts_script_language_on_focus) [USE_MAC_TSM]: New variable.
   (syms_of_macterm) [USE_MAC_TSM]: Initialize and staticpro it.
   [USE_MAC_TSM] (mac_tsm_resume): Restore script and language codes
   only when saved_ts_script_language_on_focus coincides with
   Vmac_ts_script_language_on_focus.
   [USE_MAC_TSM] (mac_tsm_suspend): Save value of
   Vmac_ts_script_language_on_focus to saved_ts_script_language_on_focus.
   (XTread_socket) [USE_MAC_TSM]: Add Mac OS Classic support.
   [USE_MAC_TSM] (mac_handle_text_input_event, init_tsm): Likewise.

2006-06-27  Chong Yidong  <cyd@stupidchicken.com>

   * src/editfns.c (Fdelete_field, Ffield_string, Ffield_beginning)
   (Ffield_string_no_properties, Ffield_end): Mention
   args-out-of-range error condition in docstring.

2006-06-27  Kim F. Storm  <storm@cua.dk>

   * src/xdisp.c (handle_composition_prop): Set stop_charpos before push_it.

2006-06-25  Kim F. Storm  <storm@cua.dk>

   * src/s/gnu-linux.h (SIGNALS_VIA_CHARACTERS): Define for Linux kernel
   version 2.4 and later.

2006-06-24  Chong Yidong  <cyd@stupidchicken.com>

   * src/xfns.c (Fx_create_frame): Set font parameter directly instead of
   using x_default_parameter, since x_get_args clears the parm alist.

2006-06-24  Eli Zaretskii  <eliz@gnu.org>

   * src/dired.c (directory_files_internal) [WINDOWSNT]: Find files
   case-insensitively.

2006-06-24  Aidan Kehoe  <kehoea@parhasard.net>

   * src/lread.c (read_escape): When an unknown Unicode code point is
   encountered as a string or character escape, signal an error.

2006-06-23  Kim F. Storm  <storm@cua.dk>

   * src/.gdbinit (pitx): Dump iterator stack.

   * src/xdisp.c (handle_composition_prop): Push iterator on stack.
   (set_iterator_to_next): Pop iterator at end of composition.

2006-06-23  Martin Rudalics  <rudalics@gmx.at>

   * src/fileio.c (Frename_file) [DOS_NT]: Don't try to move directory to
   itself on DOS_NT platforms, if the old and new names are identical
   but for the letter-case.

2006-06-21  Kim F. Storm  <storm@cua.dk>

   * src/dispextern.h (struct it): Add `position' member to iterator stack.
   Rename `pos' member to `current'.  Rearrange and add comments.

   * src/xdisp.c (handle_stop): Set it->ignore_overlay_strings_at_pos_p
   if  we get any overlays.
   (set_cursor_from_row): Don't clobber `end' if we rescan from
   start_string.
   (push_it, pop_it): Save it->position.

2006-07-07  Kenichi Handa  <handa@m17n.org>

   * src/ftfont.c (ftfont_list): Fix typo.

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-20


Revision 1.340.2.49 - (view) (download) (annotate) - [select for diffs]
Thu Jul 6 08:59:32 2006 UTC (19 years, 3 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.48: +24 -4 lines
Diff to previous 1.340.2.48 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 320-342)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - lisp/play/cookie1.el (cookie): Work properly when there's only one entry
   - Add note about "link" button-class to etc/TODO

 * gnus--rel--5.10  (patch 108-112)

   - Merge from emacs--devo--0
   - Clean up merge mistakes
   - Update from CVS
   - Update from CVS: texi/gnus.texi (Summary Buffer Lines): Fix typo.

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-86


Revision 1.474 - (view) (download) (annotate) - [select for diffs]
Wed Jul 5 17:14:10 2006 UTC (19 years, 3 months ago) by rms
Branch: MAIN
Changes since 1.473: +4 -0 lines
Diff to previous 1.473
*** empty log message ***


Revision 1.473 - (view) (download) (annotate) - [select for diffs]
Wed Jul 5 06:42:27 2006 UTC (19 years, 3 months ago) by rfrancoise
Branch: MAIN
Changes since 1.472: +4 -0 lines
Diff to previous 1.472
(top-level): Add CONTRIBUTE.


Revision 1.472 - (view) (download) (annotate) - [select for diffs]
Tue Jul 4 11:22:33 2006 UTC (19 years, 3 months ago) by nickrob
Branch: MAIN
Changes since 1.471: +4 -0 lines
Diff to previous 1.471
*** empty log message ***


Revision 1.471 - (view) (download) (annotate) - [select for diffs]
Sat Jun 24 23:08:31 2006 UTC (19 years, 4 months ago) by kfstorm
Branch: MAIN
Changes since 1.470: +9 -6 lines
Diff to previous 1.470
*** empty log message ***


Revision 1.470 - (view) (download) (annotate) - [select for diffs]
Sat Jun 24 07:01:27 2006 UTC (19 years, 4 months ago) by eliz
Branch: MAIN
Changes since 1.469: +5 -0 lines
Diff to previous 1.469
*** empty log message ***


Revision 1.260.2.65 - (view) (download) (annotate) - [select for diffs]
Tue Jun 20 08:04:00 2006 UTC (19 years, 4 months ago) by miles
Branch: lexbind
Changes since 1.260.2.64: +13 -5 lines
Diff to previous 1.260.2.64 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 285-299)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Update from CVS: admin/FOR-RELEASE: Update refcard section.

 * gnus--rel--5.10  (patch 102-104)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-22


Revision 1.340.2.45.2.2 - (view) (download) (annotate) - [select for diffs]
Tue Jun 13 07:12:48 2006 UTC (19 years, 4 months ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45.2.1: +13 -5 lines
Diff to previous 1.340.2.45.2.1 , to branch point 1.340.2.45
Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 274-299)

   - Update from CVS
   - Update etc/MORE.STUFF.
   - Merge from gnus--rel--5.10
   - Update from CVS: admin/FOR-RELEASE: Update refcard section.

 * emacs--unicode--0  (patch 62-69)

   - Merge from emacs--devo--0
   - Update from CVS

 * gnus--rel--5.10  (patch 101-104)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-5


Revision 1.340.2.48 - (view) (download) (annotate) - [select for diffs]
Wed Jun 7 18:05:07 2006 UTC (19 years, 4 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.47: +13 -5 lines
Diff to previous 1.340.2.47 , to branch point 1.340
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 285-296)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Update from CVS: admin/FOR-RELEASE: Update refcard section.

 * gnus--rel--5.10  (patch 102-104)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-64


Revision 1.469 - (view) (download) (annotate) - [select for diffs]
Sun Jun 4 22:12:46 2006 UTC (19 years, 4 months ago) by kfstorm
Branch: MAIN
Changes since 1.468: +1 -1 lines
Diff to previous 1.468
*** empty log message ***


Revision 1.468 - (view) (download) (annotate) - [select for diffs]
Sun Jun 4 22:12:16 2006 UTC (19 years, 4 months ago) by kfstorm
Branch: MAIN
Changes since 1.467: +8 -5 lines
Diff to previous 1.467
*** empty log message ***


Revision 1.467 - (view) (download) (annotate) - [select for diffs]
Thu May 18 16:59:12 2006 UTC (19 years, 5 months ago) by jhd
Branch: MAIN
Changes since 1.466: +5 -0 lines
Diff to previous 1.466
 * configure.in: Add check for ALSA.
 * configure: Regenerate.


Revision 1.260.2.64 - (view) (download) (annotate) - [select for diffs]
Wed May 17 14:47:16 2006 UTC (19 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.63: +6 -0 lines
Diff to previous 1.260.2.63 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 259-284)

   - Update from CVS
   - lisp/replace.el (occur-engine): Bind `inhibit-field-text-motion' to t
   - Merge from gnus--rel--5.10
   - Rename "field-at-point" to "field-at-pos"
   - (comint-insert-input): Remove redundant calls to setq and goto-char
   - Update etc/MORE.STUFF.

 * gnus--rel--5.10  (patch 99-101)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-21


Revision 1.260.2.63 - (view) (download) (annotate) - [select for diffs]
Wed May 17 06:33:56 2006 UTC (19 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.62: +5 -1 lines
Diff to previous 1.260.2.62 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 226-238)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Update from CVS: lisp/progmodes/python.el (python-mode): Fix typo.

 * gnus--rel--5.10  (patch 86-90)

   - Update from CVS
   - Merge from emacs--devo--0

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-19


Revision 1.260.2.62 - (view) (download) (annotate) - [select for diffs]
Wed May 17 06:30:28 2006 UTC (19 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.61: +15 -0 lines
Diff to previous 1.260.2.61 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 188-205)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Undo incorrect merge of etc/images/README from Gnus 5.10

 * gnus--rel--5.10  (patch 73-80)

   - Update from CVS
   - Update from CVS: README: Addition from 5.10.6 tar ball.

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-17


Revision 1.260.2.61 - (view) (download) (annotate) - [select for diffs]
Wed May 17 06:24:54 2006 UTC (19 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.60: +8 -0 lines
Diff to previous 1.260.2.60 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 148-163)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Remove nick-abbrevs stuff from rcirc.el
   - rcirc.el update from Ryan Yeske

 * gnus--rel--5.10  (patch 57-61)

   - Copy/update icons from Gnus trunk
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-14


Revision 1.260.2.60 - (view) (download) (annotate) - [select for diffs]
Wed May 17 06:22:58 2006 UTC (19 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.59: +9 -0 lines
Diff to previous 1.260.2.59 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 135-147)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 49-56)

   - Merge from emacs--devo--0
   - Update from CVS
   - Update from CVS: Makefile.in (release-*): New targets.

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-13


Revision 1.260.2.59 - (view) (download) (annotate) - [select for diffs]
Wed May 17 06:17:08 2006 UTC (19 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.58: +4 -0 lines
Diff to previous 1.260.2.58 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 81-96)

   - Update from CVS
   - Fix compiler error in erc-dcc.el.
   - Merge from erc--emacs--0
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 30-36)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-9


Revision 1.260.2.58 - (view) (download) (annotate) - [select for diffs]
Wed May 17 05:59:19 2006 UTC (19 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.57: +23 -0 lines
Diff to previous 1.260.2.57 , to branch point 1.260
Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 15-33)

   - Update from CVS
   - Install ERC.
   - Fix ERC compiler warnings.
   - Use utf-8 encoding in ERC ChangeLogs.
   - Merge ERC-related Viper hacks into Viper.
   - Merge from erc--main--0
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 8-13)

   - Merge from emacs--devo--0
   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--lexbind--0--patch-3


Revision 1.260.2.57 - (view) (download) (annotate) - [select for diffs]
Wed May 17 05:49:08 2006 UTC (19 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.56: +6 -0 lines
Diff to previous 1.260.2.56 , to branch point 1.260
Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 685-697)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Checkout man/cc-mode.texi from CVS with RCS keywords disabled

 * gnus--rel--5.10  (patch 174-181)

   - Update from CVS
   - Update from CVS: texi/gnus.texi (RSS): Addition.

Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-63


Revision 1.260.2.56 - (view) (download) (annotate) - [select for diffs]
Wed May 17 05:42:09 2006 UTC (19 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.55: +13 -0 lines
Diff to previous 1.260.2.55 , to branch point 1.260
Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 675-684)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 169-173)

   - Merge from emacs--cvs-trunk--0
   - Update from CVS

Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-62


Revision 1.260.2.55 - (view) (download) (annotate) - [select for diffs]
Wed May 17 05:38:12 2006 UTC (19 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.54: +4 -0 lines
Diff to previous 1.260.2.54 , to branch point 1.260
Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 649-674)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 157-168)

   - Merge from emacs--cvs-trunk--0
   - Update from CVS
   - Update from CVS: texi/message.texi: Fix default values.

Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-61


Revision 1.260.2.54 - (view) (download) (annotate) - [select for diffs]
Wed May 17 05:30:42 2006 UTC (19 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.53: +24 -0 lines
Diff to previous 1.260.2.53 , to branch point 1.260
Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 620-639)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Update from CVS: lisp/smerge-mode.el: Add 'tools' to file keywords.

 * gnus--rel--5.10  (patch 147-151)

   - Update from CVS
   - Merge from emacs--cvs-trunk--0

Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-59


Revision 1.260.2.53 - (view) (download) (annotate) - [select for diffs]
Wed May 17 05:28:18 2006 UTC (19 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.52: +4 -0 lines
Diff to previous 1.260.2.52 , to branch point 1.260
Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 616-619)

   - Add lisp/mh-e/.arch-inventory
   - Update from CVS

Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-58


Revision 1.260.2.52 - (view) (download) (annotate) - [select for diffs]
Wed May 17 05:26:36 2006 UTC (19 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.51: +9 -1 lines
Diff to previous 1.260.2.51 , to branch point 1.260
Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 598-615)

   - Update from CVS
   - Remove lisp/toolbar directory
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 142-146)

   - Update from CVS

Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-57


Revision 1.260.2.51 - (view) (download) (annotate) - [select for diffs]
Wed May 17 04:49:17 2006 UTC (19 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.50: +9 -0 lines
Diff to previous 1.260.2.50 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-56

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 582-597)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 133-141)

   - Update from CVS
   - Merge from emacs--cvs-trunk--0
   - Update from CVS: texi/gnus.texi (RSS): Fix key description.
   - Update from CVS: texi/gnus.texi (Document Server Internals): Addition.


Revision 1.260.2.50 - (view) (download) (annotate) - [select for diffs]
Wed May 17 04:45:44 2006 UTC (19 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.49: +6 -0 lines
Diff to previous 1.260.2.49 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-54

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 562-571)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 125-128)

   - Merge from emacs--cvs-trunk--0
   - Update from CVS


Revision 1.260.2.49 - (view) (download) (annotate) - [select for diffs]
Wed May 17 04:39:06 2006 UTC (19 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.48: +6 -0 lines
Diff to previous 1.260.2.48 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-51

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 542-553)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 116-121)

   - Merge from emacs--cvs-trunk--0
   - Update from CVS


Revision 1.340.2.45.2.1 - (view) (download) (annotate) - [select for diffs]
Fri May 12 08:30:21 2006 UTC (19 years, 5 months ago) by miles
Branch: unicode-xft
Changes since 1.340.2.45: +11 -1 lines
Diff to previous 1.340.2.45
Revision: emacs@sv.gnu.org/emacs--unicode-xft--0--patch-2

Merge from emacs--unicode--0

Patches applied:

 * emacs--devo--0  (patch 204-273)

   - Update from CVS
   - Sync from erc--emacs--0
   - Merge from gnus--rel--5.10
   - Improve tq.el.
   - Update from CVS: src/puresize.h (PURESIZE_RATIO): Reduce to 10/6.
   - Update from CVS: lisp/progmodes/python.el (python-mode): Fix typo.
   - (Ffield_beginning, find_field): Undo change of 2006-04-23.
   - Rcirc patch from Ryan Yeske
   - Clean up lisp/gnus/ChangeLog a bit
   - lisp/replace.el (occur-engine): Bind `inhibit-field-text-motion' to t
   - Rename "field-at-point" to "field-at-pos"
   - (comint-insert-input): Remove redundant calls to setq and goto-char

 * emacs--unicode--0  (patch 56-60)

   - Merge from emacs--devo--0
   - Update from CVS

 * gnus--rel--5.10  (patch 81-100)

   - Update from CVS
   - Merge from emacs--devo--0


Revision 1.340.2.47 - (view) (download) (annotate) - [select for diffs]
Wed May 10 20:42:36 2006 UTC (19 years, 5 months ago) by miles
Branch: emacs-unicode-2
CVS Tags: unicode-post-font-backend, unicode-pre-font-backend
Changes since 1.340.2.46: +6 -0 lines
Diff to previous 1.340.2.46 , to branch point 1.340
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-60

Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 259-273)

   - Update from CVS
   - lisp/replace.el (occur-engine): Bind `inhibit-field-text-motion' to t
   - Merge from gnus--rel--5.10
   - Rename "field-at-point" to "field-at-pos"
   - (comint-insert-input): Remove redundant calls to setq and goto-char

 * gnus--rel--5.10  (patch 99-100)

   - Merge from emacs--devo--0
   - Update from CVS


Revision 1.466 - (view) (download) (annotate) - [select for diffs]
Sat May 6 13:19:17 2006 UTC (19 years, 5 months ago) by eliz
Branch: MAIN
Changes since 1.465: +6 -0 lines
Diff to previous 1.465
*** empty log message ***


Revision 1.340.2.46 - (view) (download) (annotate) - [select for diffs]
Fri Apr 21 05:39:01 2006 UTC (19 years, 6 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.45: +5 -1 lines
Diff to previous 1.340.2.45 , to branch point 1.340
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-57

Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 226-238)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Update from CVS: lisp/progmodes/python.el (python-mode): Fix typo.

 * gnus--rel--5.10  (patch 86-90)

   - Update from CVS
   - Merge from emacs--devo--0


Revision 1.465 - (view) (download) (annotate) - [select for diffs]
Thu Apr 20 09:19:25 2006 UTC (19 years, 6 months ago) by ramprasadb
Branch: MAIN
Changes since 1.464: +5 -1 lines
Diff to previous 1.464
added changelog of updated copyright year(s)


Revision 1.340.2.45 - (view) (download) (annotate) - [select for diffs]
Sun Apr 2 01:09:59 2006 UTC (19 years, 6 months ago) by miles
Branch: emacs-unicode-2
Branch point for: unicode-xft
Changes since 1.340.2.44: +15 -0 lines
Diff to previous 1.340.2.44 , to branch point 1.340
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-51

Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 188-189)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 73)

   - Update from CVS


Revision 1.464 - (view) (download) (annotate) - [select for diffs]
Sat Apr 1 14:00:13 2006 UTC (19 years, 7 months ago) by eliz
Branch: MAIN
Changes since 1.463: +1 -1 lines
Diff to previous 1.463
Fix credits.


Revision 1.463 - (view) (download) (annotate) - [select for diffs]
Sat Apr 1 13:51:18 2006 UTC (19 years, 7 months ago) by eliz
Branch: MAIN
Changes since 1.462: +15 -0 lines
Diff to previous 1.462
*** empty log message ***


Revision 1.340.2.44 - (view) (download) (annotate) - [select for diffs]
Sun Mar 19 19:43:55 2006 UTC (19 years, 7 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.43: +8 -0 lines
Diff to previous 1.340.2.43 , to branch point 1.340
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-46

Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 157-163)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 58-61)

   - Update from CVS


Revision 1.462 - (view) (download) (annotate) - [select for diffs]
Sat Mar 18 12:30:21 2006 UTC (19 years, 7 months ago) by eliz
Branch: MAIN
Changes since 1.461: +8 -0 lines
Diff to previous 1.461
""


Revision 1.340.2.43 - (view) (download) (annotate) - [select for diffs]
Thu Mar 9 07:15:33 2006 UTC (19 years, 7 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.42: +9 -0 lines
Diff to previous 1.340.2.42 , to branch point 1.340
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-40

Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 135-143)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 49-55)

   - Merge from emacs--devo--0
   - Update from CVS
   - Update from CVS: Makefile.in (release-*): New targets.


Revision 1.461 - (view) (download) (annotate) - [select for diffs]
Fri Mar 3 12:06:47 2006 UTC (19 years, 7 months ago) by eliz
Branch: MAIN
Changes since 1.460: +2 -2 lines
Diff to previous 1.460
Fix last entry.


Revision 1.460 - (view) (download) (annotate) - [select for diffs]
Fri Mar 3 12:03:11 2006 UTC (19 years, 7 months ago) by eliz
Branch: MAIN
Changes since 1.459: +1 -1 lines
Diff to previous 1.459
Fix date on last change.


Revision 1.459 - (view) (download) (annotate) - [select for diffs]
Fri Mar 3 12:01:19 2006 UTC (19 years, 7 months ago) by eliz
Branch: MAIN
Changes since 1.458: +5 -0 lines
Diff to previous 1.458
*** empty log message ***


Revision 1.458 - (view) (download) (annotate) - [select for diffs]
Fri Mar 3 11:33:34 2006 UTC (19 years, 7 months ago) by eliz
Branch: MAIN
Changes since 1.457: +4 -0 lines
Diff to previous 1.457
ChangeLog


Revision 1.340.2.42 - (view) (download) (annotate) - [select for diffs]
Fri Feb 17 09:10:22 2006 UTC (19 years, 8 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.41: +4 -0 lines
Diff to previous 1.340.2.41 , to branch point 1.340
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-17

Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 85-96)

   - Update from CVS
   - Merge from erc--emacs--0
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 30-36)

   - Merge from emacs--devo--0
   - Update from CVS


Revision 1.457 - (view) (download) (annotate) - [select for diffs]
Tue Feb 14 15:32:55 2006 UTC (19 years, 8 months ago) by rms
Branch: MAIN
Changes since 1.456: +4 -0 lines
Diff to previous 1.456
*** empty log message ***


Revision 1.340.2.41 - (view) (download) (annotate) - [select for diffs]
Wed Feb 1 10:07:13 2006 UTC (19 years, 8 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.40: +23 -0 lines
Diff to previous 1.340.2.40 , to branch point 1.340
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-9

Merge from emacs--devo--0

Patches applied:

 * emacs--devo--0  (patch 16-33)

   - Update from CVS
   - Install ERC.
   - Fix ERC compiler warnings.
   - Use utf-8 encoding in ERC ChangeLogs.
   - Merge ERC-related Viper hacks into Viper.
   - Merge from erc--main--0
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 8-13)

   - Merge from emacs--devo--0
   - Update from CVS


Revision 1.456 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 15:33:36 2006 UTC (19 years, 8 months ago) by jhd
Branch: MAIN
Changes since 1.455: +5 -0 lines
Diff to previous 1.455
	* configure.in: Require GTK 2.4 or newer.
	* configure: Regenerate


Revision 1.455 - (view) (download) (annotate) - [select for diffs]
Sun Jan 29 13:08:57 2006 UTC (19 years, 9 months ago) by miles
Branch: MAIN
Changes since 1.454: +5 -0 lines
Diff to previous 1.454
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-22
Creator:  Michael Olson <mwolson@gnu.org>

Install ERC.


Revision 1.454 - (view) (download) (annotate) - [select for diffs]
Sun Jan 29 04:47:23 2006 UTC (19 years, 9 months ago) by eliz
Branch: MAIN
Changes since 1.453: +4 -0 lines
Diff to previous 1.453
*** empty log message ***


Revision 1.453 - (view) (download) (annotate) - [select for diffs]
Sat Jan 28 16:40:40 2006 UTC (19 years, 9 months ago) by teirllm
Branch: MAIN
Changes since 1.452: +5 -1 lines
Diff to previous 1.452
*** empty log message ***


Revision 1.452 - (view) (download) (annotate) - [select for diffs]
Fri Jan 27 18:48:28 2006 UTC (19 years, 9 months ago) by eliz
Branch: MAIN
Changes since 1.451: +5 -0 lines
Diff to previous 1.451
*** empty log message ***


Revision 1.340.2.40 - (view) (download) (annotate) - [select for diffs]
Mon Jan 16 08:37:23 2006 UTC (19 years, 9 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.39: +51 -0 lines
Diff to previous 1.340.2.39 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-97

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 616-696)

   - Add lisp/mh-e/.arch-inventory
   - Update from CVS
   - Merge from gnus--rel--5.10
   - Update from CVS: lisp/smerge-mode.el: Add 'tools' to file keywords.
   - lisp/gnus/ChangeLog: Remove duplicate entry

 * gnus--rel--5.10  (patch 147-181)

   - Update from CVS
   - Merge from emacs--cvs-trunk--0
   - Update from CVS: lisp/mml.el (mml-preview): Doc fix.
   - Update from CVS: texi/message.texi: Fix default values.
   - Update from CVS: texi/gnus.texi (RSS): Addition.


Revision 1.340.2.39 - (view) (download) (annotate) - [select for diffs]
Mon Jan 16 06:59:06 2006 UTC (19 years, 9 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.38: +9 -1 lines
Diff to previous 1.340.2.38 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-95

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 598-615)

   - Update from CVS
   - Remove lisp/toolbar directory
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 142-146)

   - Update from CVS


Revision 1.313.2.1 - (view) (download) (annotate) - [select for diffs]
Mon Jan 16 00:03:02 2006 UTC (19 years, 9 months ago) by enberg
Branch: rmail-mbox-branch
Changes since 1.313: +673 -62 lines
Diff to previous 1.313 , to next main 1.876
sync with trunk


Revision 1.451 - (view) (download) (annotate) - [select for diffs]
Thu Jan 12 22:43:27 2006 UTC (19 years, 9 months ago) by schwab
Branch: MAIN
Changes since 1.450: +6 -0 lines
Diff to previous 1.450
*** empty log message ***


Revision 1.414.2.2 - (view) (download) (annotate) - [select for diffs]
Thu Jan 12 10:24:40 2006 UTC (19 years, 9 months ago) by jhd
Branch: XFT_JHD_BRANCH
Changes since 1.414.2.1: +138 -0 lines
Diff to previous 1.414.2.1 , to branch point 1.414 , to next main 1.876
Update from HEAD


Revision 1.450 - (view) (download) (annotate) - [select for diffs]
Mon Jan 2 18:10:16 2006 UTC (19 years, 9 months ago) by cyd
Branch: MAIN
Changes since 1.449: +5 -0 lines
Diff to previous 1.449
	* configure.in: Use -Wno-pointer-sign if available.
	* configure: Regenerate.


Revision 1.449 - (view) (download) (annotate) - [select for diffs]
Sat Dec 31 15:29:39 2005 UTC (19 years, 9 months ago) by rfrancoise
Branch: MAIN
Changes since 1.448: +1 -1 lines
Diff to previous 1.448
*** empty log message ***


Revision 1.448 - (view) (download) (annotate) - [select for diffs]
Thu Dec 29 14:20:15 2005 UTC (19 years, 10 months ago) by schwab
Branch: MAIN
Changes since 1.447: +4 -0 lines
Diff to previous 1.447
	* config.guess, config.sub: Updated from master source.


Revision 1.447 - (view) (download) (annotate) - [select for diffs]
Sun Dec 25 19:29:28 2005 UTC (19 years, 10 months ago) by karl
Branch: MAIN
Changes since 1.446: +4 -0 lines
Diff to previous 1.446
FreeBSD and m/amdx86-64.h


Revision 1.446 - (view) (download) (annotate) - [select for diffs]
Tue Nov 22 12:55:06 2005 UTC (19 years, 11 months ago) by rfrancoise
Branch: MAIN
Changes since 1.445: +4 -0 lines
Diff to previous 1.445
Add etc/images/icons.


Revision 1.445 - (view) (download) (annotate) - [select for diffs]
Thu Nov 3 17:00:40 2005 UTC (19 years, 11 months ago) by schwab
Branch: MAIN
Changes since 1.444: +7 -0 lines
Diff to previous 1.444
*** empty log message ***


Revision 1.444 - (view) (download) (annotate) - [select for diffs]
Tue Nov 1 20:45:16 2005 UTC (19 years, 11 months ago) by schwab
Branch: MAIN
Changes since 1.443: +5 -0 lines
Diff to previous 1.443
*** empty log message ***


Revision 1.443 - (view) (download) (annotate) - [select for diffs]
Tue Nov 1 11:48:27 2005 UTC (19 years, 11 months ago) by rfrancoise
Branch: MAIN
Changes since 1.442: +9 -2 lines
Diff to previous 1.442
* configure.in: Check for gzip.

* Makefile.in (install): Compress source files.


Revision 1.442 - (view) (download) (annotate) - [select for diffs]
Tue Oct 25 01:09:39 2005 UTC (20 years ago) by tamm
Branch: MAIN
Changes since 1.441: +5 -0 lines
Diff to previous 1.441
Fix darwin386 configuration issue


Revision 1.441 - (view) (download) (annotate) - [select for diffs]
Sat Oct 22 11:12:31 2005 UTC (20 years ago) by eliz
Branch: MAIN
Changes since 1.440: +4 -0 lines
Diff to previous 1.440
*** empty log message ***


Revision 1.440 - (view) (download) (annotate) - [select for diffs]
Thu Oct 20 12:46:50 2005 UTC (20 years ago) by eliz
Branch: MAIN
Changes since 1.439: +1 -1 lines
Diff to previous 1.439
Fix my email address.


Revision 1.439 - (view) (download) (annotate) - [select for diffs]
Mon Oct 17 22:02:48 2005 UTC (20 years ago) by wohler
Branch: MAIN
Changes since 1.438: +4 -0 lines
Diff to previous 1.438
Moved all remaining images from lisp/toolbar to etc/images, moved
lisp/toolbar/tool-bar to lisp and "deleted" lisp/toolbar. The low
resolution images were placed in their own directory (low-color).
Replaced underscore (_) in filenames with dash (-) per convention

* make-dist: Create and populate etc/images/low-color.

* admin/FOR-RELEASE (DOCUMENTATION): Removed lisp/toolbar from list
  since it's gone. Also marked mh-e as done.

* lisp/toolbar/attach.*, lisp/toolbar/cancel.*, lisp/toolbar/close.*:
* lisp/toolbar/copy.*, lisp/toolbar/cut.*, lisp/toolbar/diropen.*:
* lisp/toolbar/exit.*, lisp/toolbar/help.*, lisp/toolbar/home.*:
* lisp/toolbar/index.*, lisp/toolbar/info.*, lisp/toolbar/mail.*:
* lisp/toolbar/new.*, lisp/toolbar/open.*, lisp/toolbar/paste.*, *
* lisp/toolbar/preferences.*, lisp/toolbar/print.*, lisp/toolbar/save.*:
* lisp/toolbar/saveas.*, lisp/toolbar/search.*:
* lisp/toolbar/search-replace.*: lisp/toolbar/spell.*:
* lisp/toolbar/undo.*: Moved to etc/images.

* lisp/toolbar/lc-copy.*: Moved to etc/images/low-color/copy.*.
* lisp/toolbar/lc-cut.*: Moved to etc/images/low-color/cut.*.
* lisp/toolbar/lc-help.*: Moved to etc/images/low-color/help.*.
* lisp/toolbar/lc-home.*: Moved to etc/images/low-color/home.*.
* lisp/toolbar/lc-index.*: Moved to etc/images/low-color/index.*.
* lisp/toolbar/lc-new.*: Moved to etc/images/low-color/new.*.
* lisp/toolbar/lc-open.*: Moved to etc/images/low-color/open.*.
* lisp/toolbar/lc-paste.*: Moved to etc/images/low-color/paste.*.
* lisp/toolbar/lc-preferences.*: Moved to etc/images/low-color/preferences.*.
* lisp/toolbar/lc-print.*: Moved to etc/images/low-color/print.*.
* lisp/toolbar/lc-save.*: Moved to etc/images/low-color/save.*.
* lisp/toolbar/lc-saveas.*: Moved to etc/images/low-color/saveas.*.
* lisp/toolbar/lc-search.*: Moved to etc/images/low-color/search.*.
* lisp/toolbar/lc-spell.*: Moved to etc/images/low-color/spell.*.
* lisp/toolbar/lc-undo.*: Moved to etc/images/low-color/undo.*.

To conform with convention, the underscore (_) in the following image
names were replaced with dash (-) or (/) as appropriate.

* lisp/toolbar/back_arrow.*: Moved to etc/images/back-arrow.*.
* lisp/toolbar/fld_open.*: Moved to etc/images/fld-open.*.
* lisp/toolbar/fwd_arrow.*: Moved to etc/images/fwd-arrow.*.
* lisp/toolbar/jump_to.*: Moved to etc/images/jump-to.*.
* lisp/toolbar/left_arrow.*: Moved to etc/images/left-arrow.*.
* lisp/toolbar/right_arrow.*: Moved to etc/images/right-arrow.*.
* lisp/toolbar/up_arrow.*: Moved to etc/images/up-arrow.*.
* lisp/toolbar/lc-back_arrow.*.: Moved to etc/images/low-color/back-arrow.*.
* lisp/toolbar/lc-fwd_arrow.*.: Moved to etc/images/low-color/fwd-arrow.*.
* lisp/toolbar/lc-jump_to.*: Moved to etc/images/low-color/jump-to.*.
* lisp/toolbar/lc-left_arrow.*.: Moved to etc/images/low-color/left-arrow.*.
* lisp/toolbar/lc-right_arrow.*.: Moved to etc/images/low-color/right-arrow.*.
* lisp/toolbar/lc-up_arrow.*: Moved to etc/images/low-color/up-arrow.*.
* lisp/toolbar/mail_compose.*.: Moved to etc/images/mail/compose.*.
* lisp/toolbar/mail_send.*: Moved to etc/images/mail/send.*.

* lisp/info.el (info-tool-bar-map): Replaced underscores in image
names with dashes.

* lisp/makefile.w32-in (WINS): Removed toolbar.

* lisp/menu-bar.el: Replaced toolbar/tool-bar.el with tool-bar.el in
comment.

* lisp/tool-bar.el: Moved to lisp from lisp/toolbar. Now that
lisp/toolbar is empty, it should be deleted when folks run "cvs up
-P".

* etc/images/README: Incorporated the content of lisp/toolbar/README
now that all of the images are here.


Revision 1.438 - (view) (download) (annotate) - [select for diffs]
Sat Oct 15 17:42:34 2005 UTC (20 years ago) by wohler
Branch: MAIN
Changes since 1.437: +4 -0 lines
Diff to previous 1.437
Create and populate etc/images/gud.


Revision 1.340.2.38 - (view) (download) (annotate) - [select for diffs]
Sat Oct 15 00:26:03 2005 UTC (20 years ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.37: +9 -0 lines
Diff to previous 1.340.2.37 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-91

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 581-597)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 133-141)

   - Update from CVS
   - Merge from emacs--cvs-trunk--0
   - Update from CVS: texi/gnus.texi (RSS): Fix key description.
   - Update from CVS: texi/gnus.texi (Document Server Internals): Addition.


Revision 1.437 - (view) (download) (annotate) - [select for diffs]
Sun Oct 9 02:08:54 2005 UTC (20 years ago) by rms
Branch: MAIN
Changes since 1.436: +4 -0 lines
Diff to previous 1.436
*** empty log message ***


Revision 1.436 - (view) (download) (annotate) - [select for diffs]
Fri Oct 7 14:55:55 2005 UTC (20 years ago) by rfrancoise
Branch: MAIN
Changes since 1.435: +5 -0 lines
Diff to previous 1.435
Add etc/images/ezimage and etc/images/mail
directories.  Install images in etc/images.


Revision 1.340.2.37 - (view) (download) (annotate) - [select for diffs]
Fri Oct 7 07:15:22 2005 UTC (20 years ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.36: +6 -0 lines
Diff to previous 1.340.2.36 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-88

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 569-579)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 129-132)

   - Update from CVS
   - Merge from emacs--cvs-trunk--0


Revision 1.435 - (view) (download) (annotate) - [select for diffs]
Tue Oct 4 09:20:14 2005 UTC (20 years ago) by mituharu
Branch: MAIN
Changes since 1.434: +6 -0 lines
Diff to previous 1.434
*** empty log message ***


Revision 1.340.2.36 - (view) (download) (annotate) - [select for diffs]
Mon Sep 19 10:20:23 2005 UTC (20 years, 1 month ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.35: +6 -0 lines
Diff to previous 1.340.2.35 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-82

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 542-553)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 116-121)

   - Merge from emacs--cvs-trunk--0
   - Update from CVS


Revision 1.434 - (view) (download) (annotate) - [select for diffs]
Thu Sep 15 12:37:10 2005 UTC (20 years, 1 month ago) by rms
Branch: MAIN
Changes since 1.433: +6 -0 lines
Diff to previous 1.433
*** empty log message ***


Revision 1.260.2.48 - (view) (download) (annotate) - [select for diffs]
Mon Sep 12 05:54:33 2005 UTC (20 years, 1 month ago) by miles
Branch: lexbind
Changes since 1.260.2.47: +16 -0 lines
Diff to previous 1.260.2.47 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-50

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 532-541)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 112-115)

   - Update from CVS


Revision 1.260.2.47 - (view) (download) (annotate) - [select for diffs]
Mon Sep 12 05:52:15 2005 UTC (20 years, 1 month ago) by miles
Branch: lexbind
Changes since 1.260.2.46: +4 -0 lines
Diff to previous 1.260.2.46 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-48

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 519-530)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 106-111)

   - Merge from emacs--cvs-trunk--0
   - Update from CVS


Revision 1.340.2.35 - (view) (download) (annotate) - [select for diffs]
Sun Sep 11 22:20:52 2005 UTC (20 years, 1 month ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.34: +16 -0 lines
Diff to previous 1.340.2.34 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-81

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 532-541)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 112-115)

   - Update from CVS


Revision 1.433 - (view) (download) (annotate) - [select for diffs]
Sat Sep 10 22:55:46 2005 UTC (20 years, 1 month ago) by kfstorm
Branch: MAIN
Changes since 1.432: +4 -0 lines
Diff to previous 1.432
*** empty log message ***


Revision 1.432 - (view) (download) (annotate) - [select for diffs]
Sat Sep 10 11:37:55 2005 UTC (20 years, 1 month ago) by eliz
Branch: MAIN
Changes since 1.431: +7 -0 lines
Diff to previous 1.431
*** empty log message ***


Revision 1.431 - (view) (download) (annotate) - [select for diffs]
Fri Sep 9 13:02:33 2005 UTC (20 years, 1 month ago) by eliz
Branch: MAIN
Changes since 1.430: +5 -0 lines
Diff to previous 1.430
*** empty log message ***


Revision 1.340.2.34 - (view) (download) (annotate) - [select for diffs]
Tue Sep 6 00:25:04 2005 UTC (20 years, 1 month ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.33: +4 -0 lines
Diff to previous 1.340.2.33 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-79

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 519-530)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 106-111)

   - Merge from emacs--cvs-trunk--0
   - Update from CVS


Revision 1.430 - (view) (download) (annotate) - [select for diffs]
Mon Sep 5 17:39:25 2005 UTC (20 years, 1 month ago) by eggert
Branch: MAIN
Changes since 1.429: +4 -0 lines
Diff to previous 1.429
* config.guess, config.sub: Updated from master source.


Revision 1.260.2.46 - (view) (download) (annotate) - [select for diffs]
Fri Aug 26 10:18:20 2005 UTC (20 years, 2 months ago) by miles
Branch: lexbind
Changes since 1.260.2.45: +4 -0 lines
Diff to previous 1.260.2.45 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-46

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 504-513)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Update from CVS: .cvsignore: Add `lock'.

 * gnus--rel--5.10  (patch 99-103)

   - Update from CVS


Revision 1.260.2.45 - (view) (download) (annotate) - [select for diffs]
Fri Aug 26 10:15:44 2005 UTC (20 years, 2 months ago) by miles
Branch: lexbind
Changes since 1.260.2.44: +16 -0 lines
Diff to previous 1.260.2.44 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-45

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 493-503)

   - Update from CVS
   - Update from CVS: lisp/startup.el (command-line): Fix typo.
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 95-98)

   - Update from CVS


Revision 1.260.2.44 - (view) (download) (annotate) - [select for diffs]
Fri Aug 26 10:01:37 2005 UTC (20 years, 2 months ago) by miles
Branch: lexbind
Changes since 1.260.2.43: +9 -0 lines
Diff to previous 1.260.2.43 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-42

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 459-473)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 86-87)

   - Update from CVS


Revision 1.340.2.33 - (view) (download) (annotate) - [select for diffs]
Fri Aug 5 10:57:31 2005 UTC (20 years, 2 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.32: +4 -0 lines
Diff to previous 1.340.2.32 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-77

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 504-513)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Update from CVS: .cvsignore: Add `lock'.

 * gnus--rel--5.10  (patch 99-103)

   - Update from CVS


Revision 1.429 - (view) (download) (annotate) - [select for diffs]
Tue Aug 2 22:59:02 2005 UTC (20 years, 2 months ago) by lektu
Branch: MAIN
Changes since 1.428: +4 -0 lines
Diff to previous 1.428
*** empty log message ***


Revision 1.340.2.32 - (view) (download) (annotate) - [select for diffs]
Fri Jul 29 01:54:41 2005 UTC (20 years, 3 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.31: +16 -0 lines
Diff to previous 1.340.2.31 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-74

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 493-503)

   - Update from CVS
   - Update from CVS: lisp/startup.el (command-line): Fix typo.
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 95-98)

   - Update from CVS


Revision 1.428 - (view) (download) (annotate) - [select for diffs]
Thu Jul 28 08:27:43 2005 UTC (20 years, 3 months ago) by lektu
Branch: MAIN
Changes since 1.427: +4 -0 lines
Diff to previous 1.427
*** empty log message ***


Revision 1.427 - (view) (download) (annotate) - [select for diffs]
Tue Jul 26 21:43:11 2005 UTC (20 years, 3 months ago) by eggert
Branch: MAIN
Changes since 1.426: +12 -0 lines
Diff to previous 1.426
Merge gnulib getopt implementation into Emacs.

* Makefile.in (AUTOCONF_INPUTS): New macro.
($(srcdir)/configure, $(srcdir)/src/stamp-h.in): Depend on it,
so that these files also depend on m4/getopt.m4.
* configure.in: Configure getopt by including m4/getopt.m4,
and configuring a getopt replacement if necessary.
* make-dist: Add m4 subdirectory.  Unlink lib-src/getopt.h.
* m4/getopt.m4: New file.

* lib-src/Makefile.in (mostlyclean): Remove getopt.h, getopt.h-t.
(GETOPT_H): New macro, from gnulib.
(getopt.h): New rule, from gnulib.
(GETOPTOBJS): Now autoconfigured.
(GETOPTDEPS): getopt.h is now autoconfigured.
(getopt.o, getopt1.o): Depend on $(GETOPT_H), not ${srcdir}/getopt.h.
(getopt.o): Depend on ${srcdir}/gettext.h.
(movemail.o): Depend on $(GETOPT_H).
* lib-src/getopt.c, lib-src/getopt1.c: Sync from gnulib.
* lib-src/getopt_.h, lib-src/getopt_int.h, lib-src/gettext.h:
New files, from gnulib.
* lib-src/getopt.h: Removed (now is getopt_.h).

* nt/inc/gettext.h: Remove; no longer needed now that
lib-src/gettext.h exists.

* src/s/cygwin.h (C_SWITCH_SYSTEM): Remove, since gettext.h is
now part of lib-src.


Revision 1.340.2.31 - (view) (download) (annotate) - [select for diffs]
Thu Jul 7 12:39:56 2005 UTC (20 years, 3 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.30: +9 -0 lines
Diff to previous 1.340.2.30 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-68

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 459-473)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 86-87)

   - Update from CVS


Revision 1.426 - (view) (download) (annotate) - [select for diffs]
Wed Jul 6 12:07:32 2005 UTC (20 years, 3 months ago) by lute
Branch: MAIN
Changes since 1.425: +5 -0 lines
Diff to previous 1.425
*** empty log message ***


Revision 1.425 - (view) (download) (annotate) - [select for diffs]
Tue Jul 5 11:01:03 2005 UTC (20 years, 3 months ago) by lute
Branch: MAIN
Changes since 1.424: +4 -0 lines
Diff to previous 1.424
*** empty log message ***


Revision 1.260.2.43 - (view) (download) (annotate) - [select for diffs]
Sun Jun 26 01:55:26 2005 UTC (20 years, 4 months ago) by miles
Branch: lexbind
Changes since 1.260.2.42: +5 -0 lines
Diff to previous 1.260.2.42 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-40

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 435-445)

   - Implement tty vertical-divider face
   - Update from CVS
   - Rename vertical-divider face to vertical-border
   - Change escape-glyph color on dark backgrounds back to cyan
   - Update reference to renamed Buffer-menu-buffer face


Revision 1.340.2.30 - (view) (download) (annotate) - [select for diffs]
Fri Jun 24 01:59:47 2005 UTC (20 years, 4 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.29: +5 -0 lines
Diff to previous 1.340.2.29 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-65

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 425-445)

   - Remove "-face" suffix from gnus faces
   - Update from CVS
   - Remove "-face" suffix from MH-E faces
   - Remove "-face" suffix from cc-mode faces
   - Remove "-face" suffix from eshell faces
   - Remove "-face" suffix from ediff faces
   - Implement tty vertical-divider face
   - Rename vertical-divider face to vertical-border
   - Change escape-glyph color on dark backgrounds back to cyan
   - Update reference to renamed Buffer-menu-buffer face


Revision 1.424 - (view) (download) (annotate) - [select for diffs]
Mon Jun 20 13:54:33 2005 UTC (20 years, 4 months ago) by lute
Branch: MAIN
Changes since 1.423: +5 -0 lines
Diff to previous 1.423
*** empty log message ***


Revision 1.340.2.29 - (view) (download) (annotate) - [select for diffs]
Thu Jun 9 07:13:00 2005 UTC (20 years, 4 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.28: +10 -0 lines
Diff to previous 1.340.2.28 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-61

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 353-357)

   - Update from CVS


Revision 1.260.2.42 - (view) (download) (annotate) - [select for diffs]
Thu Jun 9 05:28:31 2005 UTC (20 years, 4 months ago) by miles
Branch: lexbind
Changes since 1.260.2.41: +10 -0 lines
Diff to previous 1.260.2.41 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-35

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 353-357)

   - Update from CVS


Revision 1.423 - (view) (download) (annotate) - [select for diffs]
Thu Jun 9 03:43:32 2005 UTC (20 years, 4 months ago) by tamm
Branch: MAIN
Changes since 1.422: +5 -0 lines
Diff to previous 1.422
configure.in: Support Darwin/MacOSX on Intel
configure: Regenerate.


Revision 1.422 - (view) (download) (annotate) - [select for diffs]
Mon Jun 6 20:17:29 2005 UTC (20 years, 4 months ago) by jhd
Branch: MAIN
Changes since 1.421: +5 -0 lines
Diff to previous 1.421
 * configure.in (HAVE_CANCELMENUTRACKING): New test.
 * configure: Regenerate.


Revision 1.414.2.1 - (view) (download) (annotate) - [select for diffs]
Mon Jun 6 08:34:05 2005 UTC (20 years, 4 months ago) by jhd
Branch: XFT_JHD_BRANCH
Changes since 1.414: +39 -0 lines
Diff to previous 1.414
Merged from HEAD


Revision 1.340.2.28 - (view) (download) (annotate) - [select for diffs]
Fri May 20 04:21:57 2005 UTC (20 years, 5 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.27: +12 -0 lines
Diff to previous 1.340.2.27 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-53

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 302-319)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 69)

   - Update from CVS


Revision 1.260.2.41 - (view) (download) (annotate) - [select for diffs]
Fri May 20 03:39:24 2005 UTC (20 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.40: +12 -0 lines
Diff to previous 1.260.2.40 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-32

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 302-319)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 69)

   - Update from CVS


Revision 1.260.2.40 - (view) (download) (annotate) - [select for diffs]
Fri May 20 03:34:29 2005 UTC (20 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.39: +6 -0 lines
Diff to previous 1.260.2.39 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-31

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 287-301)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 68)

   - Update from CVS


Revision 1.421 - (view) (download) (annotate) - [select for diffs]
Thu May 19 08:29:56 2005 UTC (20 years, 5 months ago) by lute
Branch: MAIN
Changes since 1.420: +5 -0 lines
Diff to previous 1.420
*** empty log message ***


Revision 1.420 - (view) (download) (annotate) - [select for diffs]
Fri May 13 08:55:33 2005 UTC (20 years, 5 months ago) by mituharu
Branch: MAIN
Changes since 1.419: +7 -0 lines
Diff to previous 1.419
*** empty log message ***


Revision 1.340.2.27 - (view) (download) (annotate) - [select for diffs]
Thu May 12 03:41:07 2005 UTC (20 years, 5 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.26: +6 -0 lines
Diff to previous 1.340.2.26 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-51

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 289-301)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 68)

   - Update from CVS


Revision 1.169.4.20.2.1 - (view) (download) (annotate) - [select for diffs]
Sat May 7 23:12:13 2005 UTC (20 years, 5 months ago) by ttn
Branch: ttn-vms-21-2-stash
CVS Tags: ttn-vms-21-2-B3, ttn-vms-21-2-B4
Changes since 1.169.4.20: +39 -32 lines
Diff to previous 1.169.4.20 , to next main 1.169.4.39
*** empty log message ***


Revision 1.419 - (view) (download) (annotate) - [select for diffs]
Sat May 7 15:29:17 2005 UTC (20 years, 5 months ago) by eliz
Branch: MAIN
Changes since 1.418: +6 -0 lines
Diff to previous 1.418
*** empty log message ***


Revision 1.260.2.39 - (view) (download) (annotate) - [select for diffs]
Thu May 5 00:28:50 2005 UTC (20 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.38: +5 -0 lines
Diff to previous 1.260.2.38 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-30

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 272-286)

   - src/xdisp.c (dump_glyph_row): Don't display overlay_arrow_p field.
   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 67)

   - Update from CVS


Revision 1.260.2.38 - (view) (download) (annotate) - [select for diffs]
Thu May 5 00:26:30 2005 UTC (20 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.37: +11 -0 lines
Diff to previous 1.260.2.37 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-29

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 259-271)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 66)

   - Update from CVS


Revision 1.340.2.26 - (view) (download) (annotate) - [select for diffs]
Thu May 5 00:04:43 2005 UTC (20 years, 5 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.25: +5 -0 lines
Diff to previous 1.340.2.25 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-44

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 272-288)

   - src/xdisp.c (dump_glyph_row): Don't display overlay_arrow_p field.
   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 67)

   - Update from CVS


Revision 1.418 - (view) (download) (annotate) - [select for diffs]
Sat Apr 23 17:40:01 2005 UTC (20 years, 6 months ago) by schwab
Branch: MAIN
Changes since 1.417: +5 -0 lines
Diff to previous 1.417
.


Revision 1.340.2.25 - (view) (download) (annotate) - [select for diffs]
Thu Apr 21 05:59:45 2005 UTC (20 years, 6 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.24: +11 -0 lines
Diff to previous 1.340.2.24 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-39

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 258-271)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 66)

   - Update from CVS


Revision 1.417 - (view) (download) (annotate) - [select for diffs]
Wed Apr 20 12:56:50 2005 UTC (20 years, 6 months ago) by ttn
Branch: MAIN
Changes since 1.416: +5 -0 lines
Diff to previous 1.416
*** empty log message ***


Revision 1.416 - (view) (download) (annotate) - [select for diffs]
Thu Apr 14 08:41:11 2005 UTC (20 years, 6 months ago) by lute
Branch: MAIN
Changes since 1.415: +6 -0 lines
Diff to previous 1.415
*** empty log message ***


Revision 1.260.2.37 - (view) (download) (annotate) - [select for diffs]
Thu Apr 14 06:28:27 2005 UTC (20 years, 6 months ago) by miles
Branch: lexbind
Changes since 1.260.2.36: +5 -0 lines
Diff to previous 1.260.2.36 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-28

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 241-258)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 59-65)

   - Update from CVS
   - Merge from emacs--cvs-trunk--0
   - (mm-string-to-multibyte): Use Gnus trunk definition.


Revision 1.340.2.24 - (view) (download) (annotate) - [select for diffs]
Thu Apr 14 05:03:51 2005 UTC (20 years, 6 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.23: +5 -0 lines
Diff to previous 1.340.2.23 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-37

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 241-257)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 59-65)

   - Update from CVS
   - Merge from emacs--cvs-trunk--0
   - (mm-string-to-multibyte): Use Gnus trunk definition.


Revision 1.415 - (view) (download) (annotate) - [select for diffs]
Wed Apr 13 09:34:42 2005 UTC (20 years, 6 months ago) by lute
Branch: MAIN
Changes since 1.414: +5 -0 lines
Diff to previous 1.414
*** empty log message ***


Revision 1.260.2.36 - (view) (download) (annotate) - [select for diffs]
Sat Mar 19 02:54:09 2005 UTC (20 years, 7 months ago) by miles
Branch: lexbind
Changes since 1.260.2.35: +5 -0 lines
Diff to previous 1.260.2.35 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-21

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 180-191)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 39-44)

   - Merge from emacs--cvs-trunk--0
   - Update from CVS


Revision 1.340.2.23 - (view) (download) (annotate) - [select for diffs]
Sat Mar 19 02:42:14 2005 UTC (20 years, 7 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.22: +5 -0 lines
Diff to previous 1.340.2.22 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-28

Merge from emacs--cvs-trunk--0

Patches applied:

 * emacs--cvs-trunk--0  (patch 180-191)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 39-44)

   - Merge from emacs--cvs-trunk--0
   - Update from CVS


Revision 1.414 - (view) (download) (annotate) - [select for diffs]
Wed Mar 16 22:21:31 2005 UTC (20 years, 7 months ago) by monnier
Branch: MAIN
CVS Tags: XFT_JHD_BRANCH_base
Branch point for: XFT_JHD_BRANCH
Changes since 1.413: +5 -0 lines
Diff to previous 1.413
Don't let a special LessTif/Motif1.2 install
shadow the main Lesstif/Motif-2.1 libs and includes.


Revision 1.340.2.22 - (view) (download) (annotate) - [select for diffs]
Thu Mar 10 23:36:44 2005 UTC (20 years, 7 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.21: +5 -0 lines
Diff to previous 1.340.2.21 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-24

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0  (patch 166-172)

   - Update from CVS
   - Tweak obsolete function/variable warning message
   - Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2005/gnus--rel--5.10  (patch 38)

   - Update from CVS


Revision 1.260.2.35 - (view) (download) (annotate) - [select for diffs]
Thu Mar 10 23:30:36 2005 UTC (20 years, 7 months ago) by miles
Branch: lexbind
Changes since 1.260.2.34: +5 -0 lines
Diff to previous 1.260.2.34 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-19

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0  (patch 166-172)

   - Update from CVS
   - Tweak obsolete function/variable warning message
   - Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2005/gnus--rel--5.10  (patch 38)

   - Update from CVS


Revision 1.413 - (view) (download) (annotate) - [select for diffs]
Thu Mar 10 17:22:32 2005 UTC (20 years, 7 months ago) by jhd
Branch: MAIN
Changes since 1.412: +5 -0 lines
Diff to previous 1.412
* configure.in: Only add XASSERTS to cppflags.
* configure: Regenerate.


Revision 1.340.2.21 - (view) (download) (annotate) - [select for diffs]
Wed Mar 9 00:09:33 2005 UTC (20 years, 7 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.20: +5 -0 lines
Diff to previous 1.340.2.20 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-23

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0  (patch 150-165)

   - Update from CVS
   - Merge from gnus--rel--5.10
   - Add info/dir to arch branch

 * miles@gnu.org--gnu-2005/gnus--rel--5.10  (patch 34-37)

   - Merge from emacs--cvs-trunk--0
   - Update from CVS


Revision 1.260.2.34 - (view) (download) (annotate) - [select for diffs]
Tue Mar 8 23:40:14 2005 UTC (20 years, 7 months ago) by miles
Branch: lexbind
Changes since 1.260.2.33: +5 -0 lines
Diff to previous 1.260.2.33 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-18

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0  (patch 153-165)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2005/gnus--rel--5.10  (patch 36-37)

   - Update from CVS


Revision 1.412 - (view) (download) (annotate) - [select for diffs]
Fri Mar 4 16:45:54 2005 UTC (20 years, 7 months ago) by jhd
Branch: MAIN
Changes since 1.411: +5 -0 lines
Diff to previous 1.411
* configure.in: Added --enable-asserts.
* configure: Regenerate.


Revision 1.260.2.33 - (view) (download) (annotate) - [select for diffs]
Sun Feb 13 11:59:57 2005 UTC (20 years, 8 months ago) by miles
Branch: lexbind
Changes since 1.260.2.32: +5 -0 lines
Diff to previous 1.260.2.32 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-10

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-82
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-83
 - miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-89
   Update from CVS

 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-90
   Update from CVS: man/calc.texi: Add macro for LaTeX for info output.

 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-91
 - miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-94
   Update from CVS

 * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-12
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-13
   Update from CVS


Revision 1.340.2.20 - (view) (download) (annotate) - [select for diffs]
Sun Feb 13 07:19:06 2005 UTC (20 years, 8 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.19: +5 -0 lines
Diff to previous 1.340.2.19 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-13

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-83
 - miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-89
   Update from CVS

 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-90
   Update from CVS: man/calc.texi: Add macro for LaTeX for info output.

 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-91
 - miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-94
   Update from CVS


Revision 1.411 - (view) (download) (annotate) - [select for diffs]
Wed Feb 9 15:50:47 2005 UTC (20 years, 8 months ago) by kfstorm
Branch: MAIN
Changes since 1.410: +5 -0 lines
Diff to previous 1.410
Change release version from 21.4 to 22.1 throughout.
Change development version from 21.3.50 to 22.0.50.


Revision 1.260.2.32 - (view) (download) (annotate) - [select for diffs]
Sat Jan 22 21:50:58 2005 UTC (20 years, 9 months ago) by miles
Branch: lexbind
Changes since 1.260.2.31: +5 -0 lines
Diff to previous 1.260.2.31 , to branch point 1.260
Revision: miles@gnu.org--gnu-2005/emacs--lexbind--0--patch-5

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-41
 - miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-46
   Update from CVS

 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-47
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-4
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-5
   Update from CVS: exi/gnus-faq.texi ([4.1]): Typo.

 * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-6
   Update from CVS


Revision 1.340.2.19 - (view) (download) (annotate) - [select for diffs]
Sat Jan 22 21:39:37 2005 UTC (20 years, 9 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.18: +5 -0 lines
Diff to previous 1.340.2.18 , to branch point 1.340
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-4

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-41
 - miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-46
   Update from CVS

 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-47
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-4
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-5
   Update from CVS: exi/gnus-faq.texi ([4.1]): Typo.

 * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-6
   Update from CVS


Revision 1.410 - (view) (download) (annotate) - [select for diffs]
Wed Jan 19 19:09:04 2005 UTC (20 years, 9 months ago) by tamm
Branch: MAIN
Changes since 1.409: +5 -0 lines
Diff to previous 1.409
* configure.in: Check for <sys/utsname.h>.
* configure: Regenerate.


Revision 1.260.2.31 - (view) (download) (annotate) - [select for diffs]
Tue Jan 4 05:39:40 2005 UTC (20 years, 9 months ago) by miles
Branch: lexbind
Changes since 1.260.2.30: +10 -0 lines
Diff to previous 1.260.2.30 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-78

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-721
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-732
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-733
   Update from CVS: man/calc.texi: Fix some TeX definitions.

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-734
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-735
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-749
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-750
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-751
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-753
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-754
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-755
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-757
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-75
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-76
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-77
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-78
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-79
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-80
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-81
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-82
   Update from CVS


Revision 1.340.2.18 - (view) (download) (annotate) - [select for diffs]
Tue Dec 14 07:34:54 2004 UTC (20 years, 10 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.17: +10 -0 lines
Diff to previous 1.340.2.17 , to branch point 1.340
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-78

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-719
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-732
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-733
   Update from CVS: man/calc.texi: Fix some TeX definitions.

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-734
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-75
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-76
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-77
   Update from CVS


Revision 1.409 - (view) (download) (annotate) - [select for diffs]
Sat Dec 11 00:02:57 2004 UTC (20 years, 10 months ago) by kfstorm
Branch: MAIN
Changes since 1.408: +4 -0 lines
Diff to previous 1.408
*** empty log message ***


Revision 1.408 - (view) (download) (annotate) - [select for diffs]
Thu Dec 9 01:38:51 2004 UTC (20 years, 10 months ago) by teirllm
Branch: MAIN
Changes since 1.407: +2 -1 lines
Diff to previous 1.407
*** empty log message ***


Revision 1.407 - (view) (download) (annotate) - [select for diffs]
Thu Dec 9 01:11:54 2004 UTC (20 years, 10 months ago) by teirllm
Branch: MAIN
Changes since 1.406: +5 -0 lines
Diff to previous 1.406
*** empty log message ***


Revision 1.260.2.30 - (view) (download) (annotate) - [select for diffs]
Wed Dec 8 23:36:40 2004 UTC (20 years, 10 months ago) by miles
Branch: lexbind
Changes since 1.260.2.29: +34 -7 lines
Diff to previous 1.260.2.29 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-77

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-708
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-709
   Update from CVS: src/indent.c (Fvertical_motion): Fix last change.

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-710
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-715
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-716
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-717
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-718
   RCS keyword removal

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-719
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-720
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-74
   Update from CVS


Revision 1.260.2.29 - (view) (download) (annotate) - [select for diffs]
Wed Dec 8 23:31:44 2004 UTC (20 years, 10 months ago) by miles
Branch: lexbind
Changes since 1.260.2.28: +6 -0 lines
Diff to previous 1.260.2.28 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-76

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-693
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-695
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-696
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-697
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-702
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-703
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-704
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-707
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-72
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-73
   Merge from emacs--cvs-trunk--0


Revision 1.340.2.17 - (view) (download) (annotate) - [select for diffs]
Wed Dec 8 05:02:29 2004 UTC (20 years, 10 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.16: +34 -7 lines
Diff to previous 1.340.2.16 , to branch point 1.340
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-74

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-709
   Update from CVS: src/indent.c (Fvertical_motion): Fix last change.

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-710
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-715
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-716
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-74
   Update from CVS


Revision 1.406 - (view) (download) (annotate) - [select for diffs]
Tue Dec 7 15:42:19 2004 UTC (20 years, 10 months ago) by monnier
Branch: MAIN
Changes since 1.405: +6 -1 lines
Diff to previous 1.405
(INLINE, RE_TRANSLATE_P): Move patches mistakenly committed to src/config.in.


Revision 1.405 - (view) (download) (annotate) - [select for diffs]
Tue Dec 7 08:29:07 2004 UTC (20 years, 10 months ago) by jhd
Branch: MAIN
Changes since 1.404: +6 -0 lines
Diff to previous 1.404
* configure.in: If $HAVE_GTK_FILE_CHOOSER = yes, check for
pthreads and define HAVE_GTK_AND_PTHREAD.
* configure: Regenerate.


Revision 1.404 - (view) (download) (annotate) - [select for diffs]
Mon Dec 6 00:42:56 2004 UTC (20 years, 10 months ago) by rms
Branch: MAIN
Changes since 1.403: +4 -0 lines
Diff to previous 1.403
*** empty log message ***


Revision 1.403 - (view) (download) (annotate) - [select for diffs]
Sat Nov 27 18:22:57 2004 UTC (20 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.402: +2 -1 lines
Diff to previous 1.402
ChangeLog


Revision 1.402 - (view) (download) (annotate) - [select for diffs]
Sat Nov 27 12:29:12 2004 UTC (20 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.401: +6 -0 lines
Diff to previous 1.401
ChangeLog


Revision 1.401 - (view) (download) (annotate) - [select for diffs]
Mon Nov 22 20:38:40 2004 UTC (20 years, 11 months ago) by monnier
Branch: MAIN
Changes since 1.400: +12 -7 lines
Diff to previous 1.400
*** empty log message ***


Revision 1.340.2.16 - (view) (download) (annotate) - [select for diffs]
Fri Nov 19 06:55:08 2004 UTC (20 years, 11 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.15: +6 -0 lines
Diff to previous 1.340.2.15 , to branch point 1.340
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-72

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-693
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-695
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-696
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-697
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-702
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-703
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-704
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-708
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-72
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-73
   Merge from emacs--cvs-trunk--0


Revision 1.400 - (view) (download) (annotate) - [select for diffs]
Fri Nov 12 18:19:08 2004 UTC (20 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.399: +2 -0 lines
Diff to previous 1.399
ChangeLog


Revision 1.399 - (view) (download) (annotate) - [select for diffs]
Fri Nov 12 16:11:11 2004 UTC (20 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.398: +4 -0 lines
Diff to previous 1.398
ChangeLog


Revision 1.260.2.28 - (view) (download) (annotate) - [select for diffs]
Fri Nov 12 04:21:21 2004 UTC (20 years, 11 months ago) by miles
Branch: lexbind
Changes since 1.260.2.27: +12 -0 lines
Diff to previous 1.260.2.27 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-74

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-669
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-678
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-679
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-680
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-688
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-689
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-690
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-691
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-69
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-70
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-71
   Update from CVS


Revision 1.340.2.15 - (view) (download) (annotate) - [select for diffs]
Fri Nov 12 02:53:02 2004 UTC (20 years, 11 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.14: +12 -0 lines
Diff to previous 1.340.2.14 , to branch point 1.340
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-70

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-669
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-678
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-679
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-680
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-688
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-689
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-690
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-691
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-69
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-70
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-71
   Update from CVS


Revision 1.398 - (view) (download) (annotate) - [select for diffs]
Sun Nov 7 23:27:02 2004 UTC (20 years, 11 months ago) by kfstorm
Branch: MAIN
Changes since 1.397: +7 -0 lines
Diff to previous 1.397
*** empty log message ***


Revision 1.397 - (view) (download) (annotate) - [select for diffs]
Sat Nov 6 16:54:07 2004 UTC (20 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.396: +1 -0 lines
Diff to previous 1.396
*** empty log message ***


Revision 1.396 - (view) (download) (annotate) - [select for diffs]
Sat Nov 6 16:29:53 2004 UTC (20 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.395: +4 -0 lines
Diff to previous 1.395
*** empty log message ***


Revision 1.260.2.27 - (view) (download) (annotate) - [select for diffs]
Thu Nov 4 13:12:44 2004 UTC (20 years, 11 months ago) by miles
Branch: lexbind
Changes since 1.260.2.26: +9 -0 lines
Diff to previous 1.260.2.26 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-73

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-651
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-655
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-656
   Update from CVS: lisp/man.el (Man-xref-normal-file): Fix help-echo.

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-657
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-658
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-659
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-660
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-661
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-667
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-668
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-64
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-68
   Update from CVS


Revision 1.340.2.14 - (view) (download) (annotate) - [select for diffs]
Thu Nov 4 08:55:39 2004 UTC (20 years, 11 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.13: +9 -0 lines
Diff to previous 1.340.2.13 , to branch point 1.340
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-69

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-643
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-649
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-650
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-651
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-655
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-656
   Update from CVS: lisp/man.el (Man-xref-normal-file): Fix help-echo.

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-657
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-658
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-659
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-660
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-661
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-667
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-668
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-61
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-68
   Update from CVS


Revision 1.395 - (view) (download) (annotate) - [select for diffs]
Tue Nov 2 16:26:46 2004 UTC (20 years, 11 months ago) by jhd
Branch: MAIN
Changes since 1.394: +3 -0 lines
Diff to previous 1.394
* configure.in (HAVE_GTK): Only set with_toolkit_scroll_bars if not
explicitly set to no.


Revision 1.394 - (view) (download) (annotate) - [select for diffs]
Tue Nov 2 07:33:50 2004 UTC (20 years, 11 months ago) by jhd
Branch: MAIN
Changes since 1.393: +6 -0 lines
Diff to previous 1.393
* configure.in (HAVE_GTK_FILE_CHOOSER, $HAVE_GTK_FILE_SELECTION): New
tests for new and old GTK file dialogs.
* configure: Rebuild


Revision 1.260.2.26 - (view) (download) (annotate) - [select for diffs]
Mon Oct 25 04:22:29 2004 UTC (21 years ago) by miles
Branch: lexbind
Changes since 1.260.2.25: +6 -0 lines
Diff to previous 1.260.2.25 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-71

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-616
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-620
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-621
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-622
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-625
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-626
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-627
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-628
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-629
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-630
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-631
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-632
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-633
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-634
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-638
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-51
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-52
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-53
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-54
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-55
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-56
   Update from CVS: Add lisp/legacy-gnus-agent.el

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-57
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-58
   Update from CVS


Revision 1.260.2.25 - (view) (download) (annotate) - [select for diffs]
Mon Oct 25 04:19:44 2004 UTC (21 years ago) by miles
Branch: lexbind
Changes since 1.260.2.24: +15 -0 lines
Diff to previous 1.260.2.24 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-70

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-594
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-598
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-599
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-600
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-602
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-603
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-604
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-609
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-610
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-611
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-614
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-615
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-42
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-43
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-44
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-46
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-47
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-48
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-49
   Add {arch}/=commit-merge-make-log

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-50
   {arch}/=commit-merge-make-log: Don't die if there are no ChangeLog changes


Revision 1.340.2.13 - (view) (download) (annotate) - [select for diffs]
Fri Oct 22 10:13:47 2004 UTC (21 years ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.12: +6 -0 lines
Diff to previous 1.340.2.12 , to branch point 1.340
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-62

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-616
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-620
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-621
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-622
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-625
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-626
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-627
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-628
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-629
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-630
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-631
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-632
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-633
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-51
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-52
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-53
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-54
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-55
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-56
   Update from CVS: Add lisp/legacy-gnus-agent.el

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-57
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-58
   Update from CVS


Revision 1.393 - (view) (download) (annotate) - [select for diffs]
Wed Oct 20 16:16:07 2004 UTC (21 years ago) by jhd
Branch: MAIN
Changes since 1.392: +6 -0 lines
Diff to previous 1.392
* configure.in (HAVE_PERSONALITY_LINUX32): New test if PER_LINUX32
can be set.  Remove SETARCH test.
* configure: Rebuild


Revision 1.340.2.12 - (view) (download) (annotate) - [select for diffs]
Thu Oct 14 08:50:07 2004 UTC (21 years ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.11: +15 -0 lines
Diff to previous 1.340.2.11 , to branch point 1.340
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-57

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-594
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-598
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-599
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-600
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-602
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-603
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-604
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-609
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-610
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-611
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-614
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-615
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-42
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-43
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-44
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-46
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-47
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-48
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-49
   Add {arch}/=commit-merge-make-log

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-50
   {arch}/=commit-merge-make-log: Don't die if there are no ChangeLog changes


Revision 1.392 - (view) (download) (annotate) - [select for diffs]
Fri Oct 8 18:36:46 2004 UTC (21 years ago) by tamm
Branch: MAIN
Changes since 1.391: +5 -0 lines
Diff to previous 1.391
configure.in (HAVE_MALLOC_MALLOC_H): Test for malloc/malloc.h
configure: Rebuild


Revision 1.391 - (view) (download) (annotate) - [select for diffs]
Wed Oct 6 12:28:31 2004 UTC (21 years ago) by jhd
Branch: MAIN
Changes since 1.390: +1 -1 lines
Diff to previous 1.390
configure.in (HAVE_RANDOM_HEAPSTART): Move output of warning message to end
of configure run.


Revision 1.390 - (view) (download) (annotate) - [select for diffs]
Wed Oct 6 07:26:14 2004 UTC (21 years ago) by jhd
Branch: MAIN
Changes since 1.389: +1 -1 lines
Diff to previous 1.389
*** empty log message ***


Revision 1.389 - (view) (download) (annotate) - [select for diffs]
Wed Oct 6 07:24:40 2004 UTC (21 years ago) by jhd
Branch: MAIN
Changes since 1.388: +6 -1 lines
Diff to previous 1.388
* configure.in (HAVE_RANDOM_HEAPSTART): Change AC_MSG_ERROR to
AC_MSG_WARN.


Revision 1.260.2.24 - (view) (download) (annotate) - [select for diffs]
Wed Oct 6 05:23:58 2004 UTC (21 years ago) by miles
Branch: lexbind
Changes since 1.260.2.23: +10 -0 lines
Diff to previous 1.260.2.23 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-69

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-571
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-572
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-574
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-575
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-576
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-579
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-580
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-581
   Fix exec-shield autoconf test

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-582
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-584
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-585
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-586
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-588
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-589
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-590
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-593
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-31
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-33
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-34
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-35
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-38
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-39
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-40
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-41
   Update from CVS


Revision 1.260.2.23 - (view) (download) (annotate) - [select for diffs]
Wed Oct 6 05:21:58 2004 UTC (21 years ago) by miles
Branch: lexbind
Changes since 1.260.2.22: +5 -0 lines
Diff to previous 1.260.2.22 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-68

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-551
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-552
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-553
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-557
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-558
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-559
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-561
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-562
   Update from CVS: lisp/subr.el (after-change-major-mode-hook): Doc fix.

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-563
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-570
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-27
   Use the same directory explicit id-tags as Emacs where possible

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-28
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-29
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-30
   Update from CVS


Revision 1.388 - (view) (download) (annotate) - [select for diffs]
Tue Oct 5 20:24:18 2004 UTC (21 years ago) by jhd
Branch: MAIN
Changes since 1.387: +5 -0 lines
Diff to previous 1.387
* configure.in (HAVE_RANDOM_HEAPSTART): Renamed HAVE_EXECSHIELD.
Run test to see if heap start address is random.


Revision 1.340.2.11 - (view) (download) (annotate) - [select for diffs]
Thu Sep 30 01:20:38 2004 UTC (21 years, 1 month ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.10: +5 -0 lines
Diff to previous 1.340.2.10 , to branch point 1.340
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-48

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-581
   Fix exec-shield autoconf test

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-582
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-584
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-585
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-586
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-38
   Update from CVS


Revision 1.387 - (view) (download) (annotate) - [select for diffs]
Wed Sep 29 09:52:39 2004 UTC (21 years, 1 month ago) by miles
Branch: MAIN
Changes since 1.386: +5 -0 lines
Diff to previous 1.386
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-581

Fix exec-shield autoconf test

2004-09-29  Miles Bader  <miles@gnu.org>

   * configure.in (HAVE_EXECSHIELD): Test correct env variable to see
   if setarch is present.


Revision 1.340.2.10 - (view) (download) (annotate) - [select for diffs]
Wed Sep 29 07:22:20 2004 UTC (21 years, 1 month ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.9: +5 -0 lines
Diff to previous 1.340.2.9 , to branch point 1.340
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-47

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-571
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-572
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-574
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-575
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-576
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-579
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-580
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-31
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-33
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-34
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-35
 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-37
   Update from CVS


Revision 1.386 - (view) (download) (annotate) - [select for diffs]
Sat Sep 25 20:41:08 2004 UTC (21 years, 1 month ago) by jhd
Branch: MAIN
Changes since 1.385: +5 -0 lines
Diff to previous 1.385
* configure.in (HAVE_EXECSHIELD): Only define on x86.
* configure: Rebuild.


Revision 1.340.2.9 - (view) (download) (annotate) - [select for diffs]
Sat Sep 25 12:05:34 2004 UTC (21 years, 1 month ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.8: +5 -0 lines
Diff to previous 1.340.2.8 , to branch point 1.340
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-44

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-562
   Update from CVS: lisp/subr.el (after-change-major-mode-hook): Doc fix.

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-563
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-570
   Update from CVS


Revision 1.385 - (view) (download) (annotate) - [select for diffs]
Fri Sep 24 07:18:15 2004 UTC (21 years, 1 month ago) by jhd
Branch: MAIN
Changes since 1.384: +5 -0 lines
Diff to previous 1.384
* configure.in: Check for exec-shield.
* configure: Rebuild.


Revision 1.260.2.22 - (view) (download) (annotate) - [select for diffs]
Thu Sep 16 00:12:19 2004 UTC (21 years, 1 month ago) by miles
Branch: lexbind
Changes since 1.260.2.21: +6 -0 lines
Diff to previous 1.260.2.21 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-66

Merge from emacs--cvs-trunk--0, emacs--gnus--5.10, gnus--rel--5.10

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
   Merge from emacs--gnus--5.10, gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-524
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-534
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--gnus--5.10--base-0
   tag of miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-464

 * miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-1
   Import from CVS branch gnus-5_10-branch

 * miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-2
   Merge from lorentey@elte.hu--2004/emacs--multi-tty--0, emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-3
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-4
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-18
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-19
   Remove autoconf-generated files from archive

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-20
   Update from CVS


Revision 1.340.2.8 - (view) (download) (annotate) - [select for diffs]
Thu Sep 9 09:36:29 2004 UTC (21 years, 1 month ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.7: +6 -0 lines
Diff to previous 1.340.2.7 , to branch point 1.340
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-36

Merge from emacs--cvs-trunk--0, emacs--gnus--5.10, gnus--rel--5.10

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
   Merge from emacs--gnus--5.10, gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-524
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-534
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--gnus--5.10--base-0
   tag of miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-464

 * miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-1
   Import from CVS branch gnus-5_10-branch

 * miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-2
   Merge from lorentey@elte.hu--2004/emacs--multi-tty--0, emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-3
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-4
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-18
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-19
   Remove autoconf-generated files from archive

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-20
   Update from CVS


Revision 1.384 - (view) (download) (annotate) - [select for diffs]
Sat Sep 4 13:13:44 2004 UTC (21 years, 1 month ago) by miles
Branch: MAIN
CVS Tags: after-merge-gnus-5_10
Changes since 1.383: +6 -0 lines
Diff to previous 1.383
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523

Merge from emacs--gnus--5.10, gnus--rel--5.10

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--gnus--5.10--base-0
   tag of miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-464

 * miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-1
   Import from CVS branch gnus-5_10-branch

 * miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-2
   Merge from lorentey@elte.hu--2004/emacs--multi-tty--0, emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-3
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-4
   Merge from gnus--rel--5.10

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-18
   Update from CVS

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-19
   Remove autoconf-generated files from archive

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-20
   Update from CVS


Revision 1.381.2.3 - (view) (download) (annotate) - [select for diffs]
Sat Sep 4 12:01:05 2004 UTC (21 years, 1 month ago) by miles
Branch: gnus-5_10-branch
Changes since 1.381.2.2: +8 -0 lines
Diff to previous 1.381.2.2 , to branch point 1.381 , to next main 1.876
Revision: miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-2

Merge from lorentey@elte.hu--2004/emacs--multi-tty--0, emacs--cvs-trunk--0

Patches applied:

 * lorentey@elte.hu--2004/emacs--multi-tty--0--patch-224
   Added sorted-doc to backup regex in lib-src.

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-465
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-482
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-483
   Build-in-place tweak

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-484
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-486
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-487
   Tweak permissions

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-488
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-489
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-490
   Update from CVS: man/fixit.texi (Spelling): Fix typo.

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-491
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-494
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-495
   Update from CVS: Add missing lisp/mh-e files

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-496
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-499
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-500
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-522
   Update from CVS


Revision 1.260.2.21 - (view) (download) (annotate) - [select for diffs]
Sat Sep 4 09:21:43 2004 UTC (21 years, 1 month ago) by miles
Branch: lexbind
Changes since 1.260.2.20: +4 -0 lines
Diff to previous 1.260.2.20 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-60

Merge from lorentey@elte.hu--2004/emacs--multi-tty--0, emacs--cvs-trunk--0

Patches applied:

 * lorentey@elte.hu--2004/emacs--multi-tty--0--patch-224
   Added sorted-doc to backup regex in lib-src.

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-479
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-482
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-483
   Build-in-place tweak

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-484
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-486
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-487
   Tweak permissions


Revision 1.260.2.20 - (view) (download) (annotate) - [select for diffs]
Sat Sep 4 09:19:25 2004 UTC (21 years, 1 month ago) by miles
Branch: lexbind
Changes since 1.260.2.19: +4 -0 lines
Diff to previous 1.260.2.19 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-57

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-471
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-478
   Update from CVS


Revision 1.340.2.7 - (view) (download) (annotate) - [select for diffs]
Tue Aug 10 07:46:35 2004 UTC (21 years, 2 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.6: +4 -0 lines
Diff to previous 1.340.2.6 , to branch point 1.340
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-29

Merge from lorentey@elte.hu--2004/emacs--multi-tty--0, emacs--cvs-trunk--0

Patches applied:

 * lorentey@elte.hu--2004/emacs--multi-tty--0--patch-224
   Added sorted-doc to backup regex in lib-src.

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-479
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-482
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-483
   Build-in-place tweak

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-484
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-485
   Update from CVS


Revision 1.383 - (view) (download) (annotate) - [select for diffs]
Fri Aug 6 20:21:43 2004 UTC (21 years, 2 months ago) by schwab
Branch: MAIN
CVS Tags: before-merge-gnus-5_10, gnus-5_10-branchpoint
Changes since 1.382: +4 -0 lines
Diff to previous 1.382
*** empty log message ***


Revision 1.340.2.6 - (view) (download) (annotate) - [select for diffs]
Tue Aug 3 00:02:58 2004 UTC (21 years, 2 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.5: +4 -0 lines
Diff to previous 1.340.2.5 , to branch point 1.340
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-27

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-471
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-478
   Update from CVS


Revision 1.381.2.2 - (view) (download) (annotate) - [select for diffs]
Mon Aug 2 14:27:54 2004 UTC (21 years, 2 months ago) by rsteib
Branch: gnus-5_10-branch
CVS Tags: gnus-5_10-post-merge-yamaoka, gnus-5_10-pre-merge-yamaoka
Changes since 1.381.2.1: +2 -0 lines
Diff to previous 1.381.2.1 , to branch point 1.381
(install-arch-indep): Added pgg and sieve.


Revision 1.381.2.1 - (view) (download) (annotate) - [select for diffs]
Mon Aug 2 14:21:13 2004 UTC (21 years, 2 months ago) by rsteib
Branch: gnus-5_10-branch
Changes since 1.381: +4 -0 lines
Diff to previous 1.381
Added pgg and sieve.


Revision 1.382 - (view) (download) (annotate) - [select for diffs]
Sat Jul 31 09:23:36 2004 UTC (21 years, 3 months ago) by eliz
Branch: MAIN
Changes since 1.381: +4 -0 lines
Diff to previous 1.381
*** empty log message ***


Revision 1.260.2.19 - (view) (download) (annotate) - [select for diffs]
Tue Jul 6 10:26:48 2004 UTC (21 years, 3 months ago) by miles
Branch: lexbind
Changes since 1.260.2.18: +4 -0 lines
Diff to previous 1.260.2.18 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-49

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-431
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-441
   Update from CVS


Revision 1.260.2.18 - (view) (download) (annotate) - [select for diffs]
Tue Jul 6 10:20:14 2004 UTC (21 years, 3 months ago) by miles
Branch: lexbind
Changes since 1.260.2.17: +4 -0 lines
Diff to previous 1.260.2.17 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-47

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-417
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-419
   Update from CVS


Revision 1.260.2.17 - (view) (download) (annotate) - [select for diffs]
Tue Jul 6 10:17:14 2004 UTC (21 years, 3 months ago) by miles
Branch: lexbind
Changes since 1.260.2.16: +5 -0 lines
Diff to previous 1.260.2.16 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-46

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-409
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-410
   Make sure image types are initialized for lookup too

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-411
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-416
   Update from CVS


Revision 1.260.2.16 - (view) (download) (annotate) - [select for diffs]
Tue Jul 6 10:10:43 2004 UTC (21 years, 3 months ago) by miles
Branch: lexbind
Changes since 1.260.2.15: +5 -0 lines
Diff to previous 1.260.2.15 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-44

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-400
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-401
   More build-in-place tweaking of arch tagging

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-402
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-403
   Yet more build-in-place tweaking of arch tagging

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-404
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-406
   Update from CVS


Revision 1.340.2.5 - (view) (download) (annotate) - [select for diffs]
Tue Jul 6 02:55:05 2004 UTC (21 years, 3 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.4: +4 -0 lines
Diff to previous 1.340.2.4 , to branch point 1.340
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-22

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-431
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-441
   Update from CVS


Revision 1.381 - (view) (download) (annotate) - [select for diffs]
Sun Jul 4 22:45:31 2004 UTC (21 years, 3 months ago) by schwab
Branch: MAIN
Branch point for: gnus-5_10-branch
Changes since 1.380: +4 -0 lines
Diff to previous 1.380
*** empty log message ***


Revision 1.340.2.4 - (view) (download) (annotate) - [select for diffs]
Tue Jun 29 16:38:06 2004 UTC (21 years, 4 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.3: +4 -0 lines
Diff to previous 1.340.2.3 , to branch point 1.340
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-17

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-417
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-419
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-420
   Tweak permissions

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-421
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-430
   Update from CVS


Revision 1.340.2.3 - (view) (download) (annotate) - [select for diffs]
Mon Jun 28 07:28:19 2004 UTC (21 years, 4 months ago) by miles
Branch: emacs-unicode-2
Changes since 1.340.2.2: +27 -0 lines
Diff to previous 1.340.2.2 , to branch point 1.340
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-15

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-218
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-220
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-221
   Restore deleted tagline in etc/TUTORIAL.ru

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-222
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-228
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-229
   Remove TeX output files from the archive

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-230
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-247
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
   src/lisp.h (CYCLE_CHECK): Macro moved from xfaces.c

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-249
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-256
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-258
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-263
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-264
   Update from CVS: lispref/display.texi: emacs -> Emacs.

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-265
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-274
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-275
   Update from CVS: man/makefile.w32-in: Revert last change

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-276
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-295
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-296
   Allow restarting an existing debugger session that's exited

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-297
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-299
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-300
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-327
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-328
   Update from CVS: src/.gdbinit (xsymbol): Fix last change.

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-329
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-344
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-345
   Tweak source regexps so that building in place won't cause problems

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-346
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-351
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-352
   Update from CVS: lisp/flymake.el: New file.

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-353
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-361
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-362
   Support " [...]" style defaults in minibuffer-electric-default-mode

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-363
   (read-number): Use canonical format for default in prompt.

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-364
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-367
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-368
   Improve display-supports-face-attributes-p on non-ttys

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-369
   Rewrite face-differs-from-default-p

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-370
   Move `display-supports-face-attributes-p' entirely into C code

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-371
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-372
   Simplify face-differs-from-default-p; don't consider :stipple.

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-373
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-374
   (tty_supports_face_attributes_p): Ensure attributes differ from default

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-375
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-376
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-377
   (Fdisplay_supports_face_attributes_p): Work around bootstrapping problem

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-378
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-380
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-381
   Face merging cleanups

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-382
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-384
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-385
   src/xfaces.c (push_named_merge_point): Return 0 if a cycle is detected

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-386
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-395
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-396
   Tweak arch tagging to make build/install-in-place less annoying

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
   Work around vc-arch problems when building eshell

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-398
   Tweak permissions

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-399
   Tweak directory permissions

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-400
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-401
   More build-in-place tweaking of arch tagging

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-402
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-403
   Yet more build-in-place tweaking of arch tagging

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-404
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-409
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-410
   Make sure image types are initialized for lookup too

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-411
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-416
   Update from CVS


Revision 1.380 - (view) (download) (annotate) - [select for diffs]
Mon Jun 21 11:57:45 2004 UTC (21 years, 4 months ago) by handa
Branch: MAIN
Changes since 1.379: +4 -0 lines
Diff to previous 1.379
*** empty log message ***


Revision 1.379 - (view) (download) (annotate) - [select for diffs]
Tue Jun 15 21:20:41 2004 UTC (21 years, 4 months ago) by teirllm
Branch: MAIN
Changes since 1.378: +5 -0 lines
Diff to previous 1.378
*** empty log message ***


Revision 1.378 - (view) (download) (annotate) - [select for diffs]
Sat Jun 12 06:00:38 2004 UTC (21 years, 4 months ago) by jurta
Branch: MAIN
Changes since 1.377: +5 -0 lines
Diff to previous 1.377
*** empty log message ***


Revision 1.260.2.15 - (view) (download) (annotate) - [select for diffs]
Tue May 11 02:20:46 2004 UTC (21 years, 5 months ago) by miles
Branch: lexbind
Changes since 1.260.2.14: +4 -0 lines
Diff to previous 1.260.2.14 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-32

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-270
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-274
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-275
   Update from CVS: man/makefile.w32-in: Revert last change

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-276
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-280
   Update from CVS


Revision 1.377 - (view) (download) (annotate) - [select for diffs]
Tue May 4 21:24:09 2004 UTC (21 years, 5 months ago) by monnier
Branch: MAIN
Changes since 1.376: +4 -0 lines
Diff to previous 1.376
Don't use `extrasub' (loses with autoconf 2.59).


Revision 1.260.2.14 - (view) (download) (annotate) - [select for diffs]
Sat May 1 23:46:12 2004 UTC (21 years, 6 months ago) by miles
Branch: lexbind
Changes since 1.260.2.13: +4 -0 lines
Diff to previous 1.260.2.13 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-31

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-262
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-263
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-264
   Update from CVS: lispref/display.texi: emacs -> Emacs.

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-265
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-269
   Update from CVS


Revision 1.376 - (view) (download) (annotate) - [select for diffs]
Fri Apr 30 13:53:34 2004 UTC (21 years, 6 months ago) by monnier
Branch: MAIN
Changes since 1.375: +4 -0 lines
Diff to previous 1.375
*** empty log message ***


Revision 1.260.2.13 - (view) (download) (annotate) - [select for diffs]
Tue Apr 27 14:10:58 2004 UTC (21 years, 6 months ago) by miles
Branch: lexbind
Changes since 1.260.2.12: +4 -0 lines
Diff to previous 1.260.2.12 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-28

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-240
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-247
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-248
   src/lisp.h (CYCLE_CHECK): Macro moved from xfaces.c

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-249
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-254
   Update from CVS


Revision 1.260.2.12 - (view) (download) (annotate) - [select for diffs]
Tue Apr 27 14:08:24 2004 UTC (21 years, 6 months ago) by miles
Branch: lexbind
Changes since 1.260.2.11: +5 -0 lines
Diff to previous 1.260.2.11 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-27

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-215
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-220
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-221
   Restore deleted tagline in etc/TUTORIAL.ru

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-222
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-228
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-229
   Remove TeX output files from the archive

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-230
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-239
   Update from CVS


Revision 1.375 - (view) (download) (annotate) - [select for diffs]
Sat Apr 24 02:27:49 2004 UTC (21 years, 6 months ago) by ttn
Branch: MAIN
Changes since 1.374: +4 -0 lines
Diff to previous 1.374
*** empty log message ***


Revision 1.374 - (view) (download) (annotate) - [select for diffs]
Sat Apr 17 19:48:09 2004 UTC (21 years, 6 months ago) by rms
Branch: MAIN
Changes since 1.373: +5 -0 lines
Diff to previous 1.373
*** empty log message ***


Revision 1.340.2.2 - (view) (download) (annotate) - [select for diffs]
Fri Apr 16 12:49:38 2004 UTC (21 years, 6 months ago) by handa
Branch: emacs-unicode-2
CVS Tags: emacs-unicode-2-pre-sync
Changes since 1.340.2.1: +137 -21 lines
Diff to previous 1.340.2.1 , to branch point 1.340
Sync to HEAD


Revision 1.260.2.11 - (view) (download) (annotate) - [select for diffs]
Sat Apr 10 06:14:57 2004 UTC (21 years, 6 months ago) by miles
Branch: lexbind
Changes since 1.260.2.10: +13 -2 lines
Diff to previous 1.260.2.10 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-17

Merge from emacs--cvs-trunk--0

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-178
 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-194
   Update from CVS


Revision 1.373 - (view) (download) (annotate) - [select for diffs]
Sun Apr 4 21:37:26 2004 UTC (21 years, 6 months ago) by eliz
Branch: MAIN
CVS Tags: handa-temp-tag
Changes since 1.372: +2 -2 lines
Diff to previous 1.372
Update my email address.


Revision 1.372 - (view) (download) (annotate) - [select for diffs]
Sun Apr 4 20:57:13 2004 UTC (21 years, 6 months ago) by eliz
Branch: MAIN
Changes since 1.371: +6 -0 lines
Diff to previous 1.371
*** empty log message ***


Revision 1.260.2.10 - (view) (download) (annotate) - [select for diffs]
Thu Apr 1 04:27:08 2004 UTC (21 years, 7 months ago) by miles
Branch: lexbind
Changes since 1.260.2.9: +13 -1 lines
Diff to previous 1.260.2.9 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-13

Merge from emacs--cvs-trunk

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-162
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-163
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-164
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-165
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-166
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-167
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-168
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-169
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-170
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-171
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-172
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-173
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-174
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-175
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-176
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-177
   Update from CVS


Revision 1.371 - (view) (download) (annotate) - [select for diffs]
Thu Apr 1 02:14:01 2004 UTC (21 years, 7 months ago) by teirllm
Branch: MAIN
Changes since 1.370: +5 -0 lines
Diff to previous 1.370
*** empty log message ***


Revision 1.370 - (view) (download) (annotate) - [select for diffs]
Mon Mar 22 14:10:23 2004 UTC (21 years, 7 months ago) by monnier
Branch: MAIN
Changes since 1.369: +5 -1 lines
Diff to previous 1.369
Add local variables to prevent byte-compiling.


Revision 1.369 - (view) (download) (annotate) - [select for diffs]
Sun Mar 21 14:31:42 2004 UTC (21 years, 7 months ago) by rms
Branch: MAIN
Changes since 1.368: +5 -1 lines
Diff to previous 1.368
*** empty log message ***


Revision 1.368 - (view) (download) (annotate) - [select for diffs]
Sat Mar 20 01:08:22 2004 UTC (21 years, 7 months ago) by rms
Branch: MAIN
Changes since 1.367: +4 -0 lines
Diff to previous 1.367
*** empty log message ***


Revision 1.260.2.9 - (view) (download) (annotate) - [select for diffs]
Fri Mar 19 23:29:22 2004 UTC (21 years, 7 months ago) by miles
Branch: lexbind
Changes since 1.260.2.8: +5 -1 lines
Diff to previous 1.260.2.8 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-11

Merge from emacs--cvs-trunk

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-138
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-139
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-140
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-141
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-142
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-143
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-144
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-145
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-146
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-147
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-148
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-149
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-150
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-151
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-152
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-153
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-154
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-155
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-156
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-157
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-158
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-159
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-160
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-161
   Update from CVS


Revision 1.260.2.8 - (view) (download) (annotate) - [select for diffs]
Fri Mar 19 23:27:34 2004 UTC (21 years, 7 months ago) by miles
Branch: lexbind
Changes since 1.260.2.7: +7 -4 lines
Diff to previous 1.260.2.7 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-10

Merge from emacs--cvs-trunk

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-121
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-122
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-123
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-124
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-125
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-126
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-127
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-128
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-129
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-130
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-131
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-132
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-133
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-134
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-135
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-136
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-137
   Update from CVS


Revision 1.367 - (view) (download) (annotate) - [select for diffs]
Mon Mar 15 21:16:20 2004 UTC (21 years, 7 months ago) by teirllm
Branch: MAIN
Changes since 1.366: +4 -0 lines
Diff to previous 1.366
*** empty log message ***


Revision 1.366 - (view) (download) (annotate) - [select for diffs]
Sun Mar 7 06:53:16 2004 UTC (21 years, 7 months ago) by eliz
Branch: MAIN
Changes since 1.365: +1 -1 lines
Diff to previous 1.365
Fix a typo.


Revision 1.365 - (view) (download) (annotate) - [select for diffs]
Tue Mar 2 22:13:02 2004 UTC (21 years, 7 months ago) by monnier
Branch: MAIN
Changes since 1.364: +7 -4 lines
Diff to previous 1.364
*** empty log message ***


Revision 1.260.2.7 - (view) (download) (annotate) - [select for diffs]
Sat Feb 28 05:41:57 2004 UTC (21 years, 8 months ago) by miles
Branch: lexbind
Changes since 1.260.2.6: +5 -0 lines
Diff to previous 1.260.2.6 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-9

Merge from emacs--cvs-trunk

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-102
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-103
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-104
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-105
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-106
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-107
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-108
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-109
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-110
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-111
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-112
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-113
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-114
   Merge some minor redisplay bug-fixes from emacs--tiling--0

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-115
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-116
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-117
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-118
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-119
   src/keyboard.c (adjust_point_for_property): #ifdef-out dodgy xassert

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-120
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--tiling--0--patch-9
   Remove bogus xassert

 * miles@gnu.org--gnu-2004/emacs--tiling--0--patch-10
   Avoid negative descents for images with ascent > height

 * miles@gnu.org--gnu-2004/emacs--tiling--0--patch-13
   Fix iterator-inconsistency bug in redisplay


Revision 1.364 - (view) (download) (annotate) - [select for diffs]
Tue Feb 17 23:47:32 2004 UTC (21 years, 8 months ago) by uid65598
Branch: MAIN
Changes since 1.363: +5 -0 lines
Diff to previous 1.363
*** empty log message ***


Revision 1.260.2.6 - (view) (download) (annotate) - [select for diffs]
Tue Feb 17 23:15:40 2004 UTC (21 years, 8 months ago) by uid65618
Branch: lexbind
Changes since 1.260.2.5: +14 -0 lines
Diff to previous 1.260.2.5 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-7

Merge from emacs--cvs-trunk

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-83
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-84
   Add lisp/emacs-lisp/macroexp.el

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-85
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-86
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-87
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-88
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-89
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-90
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-91
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-92
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-93
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-94
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-95
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-96
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-97
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-98
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-99
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-100
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-101
   Update from CVS


Revision 1.363 - (view) (download) (annotate) - [select for diffs]
Mon Feb 16 18:27:43 2004 UTC (21 years, 8 months ago) by uid65627
Branch: MAIN
Changes since 1.362: +5 -0 lines
Diff to previous 1.362
*** empty log message ***


Revision 1.362 - (view) (download) (annotate) - [select for diffs]
Sun Feb 15 00:03:03 2004 UTC (21 years, 8 months ago) by uid67419
Branch: MAIN
Changes since 1.361: +5 -0 lines
Diff to previous 1.361
*** empty log message ***


Revision 1.361 - (view) (download) (annotate) - [select for diffs]
Mon Feb 9 23:22:28 2004 UTC (21 years, 8 months ago) by uid68472
Branch: MAIN
Changes since 1.360: +4 -0 lines
Diff to previous 1.360
*** empty log message ***


Revision 1.260.2.5 - (view) (download) (annotate) - [select for diffs]
Thu Feb 5 14:48:26 2004 UTC (21 years, 8 months ago) by uid65618
Branch: lexbind
Changes since 1.260.2.4: +20 -3 lines
Diff to previous 1.260.2.4 , to branch point 1.260
Revision: miles@gnu.org--gnu-2004/emacs--lexbind--0--patch-2

Merge from emacs--cvs-trunk

Patches applied:

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-4
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-5
   Add =cvs-sync-make-log script

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-6
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-7
   Use absolute tla-tools filenames in =cvs-sync-make-log

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-8
   Use proper arch-tag: syntax for lispintro/texinfo.tex

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-9
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-10
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-11
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-12
   Add section on button package to lisp reference manual

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-13
   Minor tweaks to Buttons section in lispref/display.texi

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-14
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-15
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-16
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-17
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-18
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-19
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-20
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-21
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-22
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-23
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-24
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-25
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-26
   Fix permission bogosities

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-27
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-28
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-29
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-30
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-31
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-32
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-33
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-34
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-35
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-36
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-37
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-38
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-39
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-40
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-41
   Make fringe-drawing stuff compile without a window-system

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-42
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-43
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-44
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-45
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-46
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-47
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-48
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-49
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-50
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-51
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-52
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-53
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-54
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-55
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-56
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-57
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-58
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-59
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-60
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-61
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-62
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-63
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-64
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-65
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-66
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-67
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-68
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-69
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-70
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-71
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-72
   Update from CVS

 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-73
   Update from CVS


Revision 1.360 - (view) (download) (annotate) - [select for diffs]
Tue Jan 27 16:48:17 2004 UTC (21 years, 9 months ago) by uid65630
Branch: MAIN
Changes since 1.359: +5 -1 lines
Diff to previous 1.359
*** empty log message ***


Revision 1.359 - (view) (download) (annotate) - [select for diffs]
Sun Jan 25 16:27:44 2004 UTC (21 years, 9 months ago) by uid65629
Branch: MAIN
Changes since 1.358: +1 -1 lines
Diff to previous 1.358
Fix typo.


Revision 1.358 - (view) (download) (annotate) - [select for diffs]
Sun Jan 25 10:29:27 2004 UTC (21 years, 9 months ago) by uid65566
Branch: MAIN
Changes since 1.357: +4 -0 lines
Diff to previous 1.357
*** empty log message ***


Revision 1.357 - (view) (download) (annotate) - [select for diffs]
Tue Jan 6 23:50:50 2004 UTC (21 years, 9 months ago) by uid65625
Branch: MAIN
Changes since 1.356: +5 -1 lines
Diff to previous 1.356
*** empty log message ***


Revision 1.356 - (view) (download) (annotate) - [select for diffs]
Tue Dec 30 08:09:10 2003 UTC (21 years, 10 months ago) by uid65627
Branch: MAIN
Changes since 1.355: +5 -0 lines
Diff to previous 1.355
*** empty log message ***


Revision 1.260.2.4 - (view) (download) (annotate) - [select for diffs]
Sun Dec 28 05:19:54 2003 UTC (21 years, 10 months ago) by uid65618
Branch: lexbind
Changes since 1.260.2.3: +24 -0 lines
Diff to previous 1.260.2.3 , to branch point 1.260
Synchronize with CVS trunk


Revision 1.355 - (view) (download) (annotate) - [select for diffs]
Wed Dec 24 23:32:12 2003 UTC (21 years, 10 months ago) by uid65618
Branch: MAIN
Changes since 1.354: +4 -0 lines
Diff to previous 1.354
Fixup some ChangeLogs


Revision 1.354 - (view) (download) (annotate) - [select for diffs]
Wed Dec 24 16:45:27 2003 UTC (21 years, 10 months ago) by uid65629
Branch: MAIN
Changes since 1.353: +5 -0 lines
Diff to previous 1.353
*** empty log message ***


Revision 1.353 - (view) (download) (annotate) - [select for diffs]
Wed Dec 24 12:02:26 2003 UTC (21 years, 10 months ago) by uid66518
Branch: MAIN
Changes since 1.352: +5 -0 lines
Diff to previous 1.352
* Makefile.in (install-arch-dep): Don't let cd output go into
pipe for carbon_appdir.


Revision 1.352 - (view) (download) (annotate) - [select for diffs]
Wed Dec 24 10:45:46 2003 UTC (21 years, 10 months ago) by uid65629
Branch: MAIN
Changes since 1.351: +4 -0 lines
Diff to previous 1.351
*** empty log message ***


Revision 1.351 - (view) (download) (annotate) - [select for diffs]
Mon Dec 1 00:45:50 2003 UTC (21 years, 11 months ago) by schwab
Branch: MAIN
Changes since 1.350: +1 -1 lines
Diff to previous 1.350
*** empty log message ***


Revision 1.350 - (view) (download) (annotate) - [select for diffs]
Mon Dec 1 00:37:56 2003 UTC (21 years, 11 months ago) by schwab
Branch: MAIN
Changes since 1.349: +6 -0 lines
Diff to previous 1.349
*** empty log message ***


Revision 1.260.2.3 - (view) (download) (annotate) - [select for diffs]
Fri Nov 21 00:35:51 2003 UTC (21 years, 11 months ago) by miles
Branch: lexbind
Changes since 1.260.2.2: +6 -0 lines
Diff to previous 1.260.2.2 , to branch point 1.260
Revision: miles@gnu.org--gnu-2003/emacs--lexbind--0--patch-15

Merge from emacs--cvs-trunk

Patches applied:

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-88
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-89
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-90
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-91
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-92
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-93
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-94
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-95
   Correct the default target in man/Makefile.in

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-96
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-97
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-98
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-99
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-100
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-101
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-102
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-103
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-104
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-105
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-106
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-107
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-108
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-109
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-110
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-111
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-112
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-113
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-114
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-115
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-116
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-117
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-118
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-119
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-120
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-121
   Update from CVS

 * miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-122
   Update from CVS


Revision 1.349 - (view) (download) (annotate) - [select for diffs]
Sun Nov 16 18:32:34 2003 UTC (21 years, 11 months ago) by jhd
Branch: MAIN
Changes since 1.348: +1 -0 lines
Diff to previous 1.348
Fix in HAVE_X_SM test


Revision 1.348 - (view) (download) (annotate) - [select for diffs]
Sun Nov 16 16:09:06 2003 UTC (21 years, 11 months ago) by jhd
Branch: MAIN
Changes since 1.347: +5 -0 lines
Diff to previous 1.347
* configure.in (HAVE_GTK_MULTIDISPLAY): Check if GTK can handle
  multiple displays.
  Regenerate configure.


Revision 1.260.2.2 - (view) (download) (annotate) - [select for diffs]
Tue Oct 14 23:59:08 2003 UTC (22 years ago) by miles
Branch: lexbind
Changes since 1.260.2.1: +176 -37 lines
Diff to previous 1.260.2.1 , to branch point 1.260
Update from arch emacs--lexbind branch


Revision 1.347 - (view) (download) (annotate) - [select for diffs]
Mon Oct 6 08:32:08 2003 UTC (22 years ago) by lute
Branch: MAIN
Changes since 1.346: +1 -1 lines
Diff to previous 1.346
Update my email address.


Revision 1.169.4.39 - (view) (download) (annotate) - [select for diffs]
Thu Oct 2 22:48:44 2003 UTC (22 years ago) by pot
Branch: EMACS_21_1_RC
Changes since 1.169.4.38: +4 -0 lines
Diff to previous 1.169.4.38 , to branch point 1.169 , to next main 1.876
*** empty log message ***


Revision 1.340.2.1 - (view) (download) (annotate) - [select for diffs]
Mon Sep 29 17:50:27 2003 UTC (22 years, 1 month ago) by fx
Branch: emacs-unicode-2
CVS Tags: emacs-bidi-base
Branch point for: emacs-bidi
Changes since 1.340: +4 -0 lines
Diff to previous 1.340
*** empty log message ***


Revision 1.346 - (view) (download) (annotate) - [select for diffs]
Tue Sep 23 12:41:15 2003 UTC (22 years, 1 month ago) by fx
Branch: MAIN
Changes since 1.345: +4 -0 lines
Diff to previous 1.345
*** empty log message ***


Revision 1.345 - (view) (download) (annotate) - [select for diffs]
Sat Sep 13 23:28:50 2003 UTC (22 years, 1 month ago) by kfstorm
Branch: MAIN
Changes since 1.344: +4 -0 lines
Diff to previous 1.344
*** empty log message ***


Revision 1.344 - (view) (download) (annotate) - [select for diffs]
Fri Sep 12 15:06:41 2003 UTC (22 years, 1 month ago) by teirllm
Branch: MAIN
Changes since 1.343: +4 -0 lines
Diff to previous 1.343
*** empty log message ***


Revision 1.343 - (view) (download) (annotate) - [select for diffs]
Mon Sep 1 15:44:58 2003 UTC (22 years, 2 months ago) by miles
Branch: MAIN
Changes since 1.342: +2 -0 lines
Diff to previous 1.342
Add arch taglines


Revision 1.342 - (view) (download) (annotate) - [select for diffs]
Tue Aug 19 08:23:12 2003 UTC (22 years, 2 months ago) by lute
Branch: MAIN
Changes since 1.341: +5 -0 lines
Diff to previous 1.341
*** empty log message ***


Revision 1.341 - (view) (download) (annotate) - [select for diffs]
Thu Aug 7 16:00:31 2003 UTC (22 years, 2 months ago) by akochoi
Branch: MAIN
Changes since 1.340: +23 -18 lines
Diff to previous 1.340
* configure.in [powerpc-apple-darwin*]: Use the -no-cpp-precomp
  option instead of -traditional-cpp for CPP.


Revision 1.340 - (view) (download) (annotate) - [select for diffs]
Tue Jul 29 17:41:18 2003 UTC (22 years, 3 months ago) by rms
Branch: MAIN
Branch point for: emacs-unicode-2
Changes since 1.339: +4 -0 lines
Diff to previous 1.339
*** empty log message ***


Revision 1.339 - (view) (download) (annotate) - [select for diffs]
Tue Jul 29 10:11:01 2003 UTC (22 years, 3 months ago) by schwab
Branch: MAIN
Changes since 1.338: +10 -0 lines
Diff to previous 1.338
*** empty log message ***


Revision 1.338 - (view) (download) (annotate) - [select for diffs]
Mon Jul 28 22:53:07 2003 UTC (22 years, 3 months ago) by lektu
Branch: MAIN
Changes since 1.337: +5 -0 lines
Diff to previous 1.337
*** empty log message ***


Revision 1.337 - (view) (download) (annotate) - [select for diffs]
Tue Jul 22 17:30:24 2003 UTC (22 years, 3 months ago) by fx
Branch: MAIN
Changes since 1.336: +7 -0 lines
Diff to previous 1.336
*** empty log message ***


Revision 1.336 - (view) (download) (annotate) - [select for diffs]
Tue Jul 15 08:07:27 2003 UTC (22 years, 3 months ago) by schwab
Branch: MAIN
Changes since 1.335: +4 -0 lines
Diff to previous 1.335
*** empty log message ***


Revision 1.335 - (view) (download) (annotate) - [select for diffs]
Mon Jul 14 02:23:07 2003 UTC (22 years, 3 months ago) by monnier
Branch: MAIN
Changes since 1.334: +23 -23 lines
Diff to previous 1.334
*** empty log message ***


Revision 1.334 - (view) (download) (annotate) - [select for diffs]
Sat Jul 12 22:00:09 2003 UTC (22 years, 3 months ago) by rms
Branch: MAIN
Changes since 1.333: +4 -0 lines
Diff to previous 1.333
*** empty log message ***


Revision 1.333 - (view) (download) (annotate) - [select for diffs]
Tue Jul 8 22:02:51 2003 UTC (22 years, 3 months ago) by kfstorm
Branch: MAIN
Changes since 1.332: +5 -0 lines
Diff to previous 1.332
*** empty log message ***


Revision 1.332 - (view) (download) (annotate) - [select for diffs]
Fri Jul 4 20:10:42 2003 UTC (22 years, 3 months ago) by fx
Branch: MAIN
Changes since 1.331: +4 -0 lines
Diff to previous 1.331
*** empty log message ***


Revision 1.331 - (view) (download) (annotate) - [select for diffs]
Thu Jun 26 21:09:11 2003 UTC (22 years, 4 months ago) by jhd
Branch: MAIN
Changes since 1.330: +4 -0 lines
Diff to previous 1.330
configure: Regenerate


Revision 1.330 - (view) (download) (annotate) - [select for diffs]
Mon Jun 23 18:36:25 2003 UTC (22 years, 4 months ago) by fx
Branch: MAIN
Changes since 1.329: +6 -0 lines
Diff to previous 1.329
*** empty log message ***


Revision 1.326.2.1 - (view) (download) (annotate) - [select for diffs]
Tue Jun 10 22:58:04 2003 UTC (22 years, 4 months ago) by fx
Branch: Boehm-GC
Changes since 1.326: +20 -0 lines
Diff to previous 1.326 , to next main 1.876
*** empty log message ***


Revision 1.329 - (view) (download) (annotate) - [select for diffs]
Fri Jun 6 09:04:22 2003 UTC (22 years, 4 months ago) by fx
Branch: MAIN
Changes since 1.328: +5 -0 lines
Diff to previous 1.328
*** empty log message ***


Revision 1.328 - (view) (download) (annotate) - [select for diffs]
Thu Jun 5 16:37:57 2003 UTC (22 years, 4 months ago) by fx
Branch: MAIN
Changes since 1.327: +6 -0 lines
Diff to previous 1.327
*** empty log message ***


Revision 1.327 - (view) (download) (annotate) - [select for diffs]
Mon Jun 2 19:26:18 2003 UTC (22 years, 4 months ago) by lektu
Branch: MAIN
Changes since 1.326: +6 -2 lines
Diff to previous 1.326
*** empty log message ***


Revision 1.326 - (view) (download) (annotate) - [select for diffs]
Sat May 24 19:30:11 2003 UTC (22 years, 5 months ago) by schwab
Branch: MAIN
CVS Tags: Boehm-GC-base
Branch point for: Boehm-GC
Changes since 1.325: +5 -0 lines
Diff to previous 1.325
*** empty log message ***


Revision 1.325 - (view) (download) (annotate) - [select for diffs]
Thu May 22 20:00:57 2003 UTC (22 years, 5 months ago) by fx
Branch: MAIN
Changes since 1.324: +5 -0 lines
Diff to previous 1.324
*** empty log message ***


Revision 1.324 - (view) (download) (annotate) - [select for diffs]
Tue May 20 16:32:33 2003 UTC (22 years, 5 months ago) by fx
Branch: MAIN
Changes since 1.323: +18 -0 lines
Diff to previous 1.323
*** empty log message ***


Revision 1.169.4.38 - (view) (download) (annotate) - [select for diffs]
Sat May 3 14:39:40 2003 UTC (22 years, 5 months ago) by fx
Branch: EMACS_21_1_RC
Changes since 1.169.4.37: +5 -0 lines
Diff to previous 1.169.4.37 , to branch point 1.169
*** empty log message ***


Revision 1.323 - (view) (download) (annotate) - [select for diffs]
Wed Apr 30 12:36:26 2003 UTC (22 years, 6 months ago) by kai
Branch: MAIN
Changes since 1.322: +5 -0 lines
Diff to previous 1.322
(* GNU/Linux development packages): Mention Debian and
RedHat package names.


Revision 1.322 - (view) (download) (annotate) - [select for diffs]
Wed Apr 30 11:58:54 2003 UTC (22 years, 6 months ago) by rms
Branch: MAIN
Changes since 1.321: +4 -0 lines
Diff to previous 1.321
*** empty log message ***


Revision 1.321 - (view) (download) (annotate) - [select for diffs]
Wed Apr 30 08:01:30 2003 UTC (22 years, 6 months ago) by kai
Branch: MAIN
Changes since 1.320: +5 -0 lines
Diff to previous 1.320
(* GNU/Linux development packages): Tell people to
install additional packages for compiling Emacs.


Revision 1.169.4.37 - (view) (download) (annotate) - [select for diffs]
Mon Apr 28 16:32:26 2003 UTC (22 years, 6 months ago) by pot
Branch: EMACS_21_1_RC
Changes since 1.169.4.36: +4 -0 lines
Diff to previous 1.169.4.36 , to branch point 1.169
*** empty log message ***


Revision 1.320 - (view) (download) (annotate) - [select for diffs]
Mon Apr 28 16:23:10 2003 UTC (22 years, 6 months ago) by pot
Branch: MAIN
Changes since 1.319: +0 -4 lines
Diff to previous 1.319
Undo RMS' change in configure.in, as it is useless, per Dave Love.


Revision 1.169.4.36 - (view) (download) (annotate) - [select for diffs]
Fri Apr 11 13:26:36 2003 UTC (22 years, 6 months ago) by schwab
Branch: EMACS_21_1_RC
Changes since 1.169.4.35: +5 -0 lines
Diff to previous 1.169.4.35 , to branch point 1.169
*** empty log message ***


Revision 1.319 - (view) (download) (annotate) - [select for diffs]
Wed Apr 9 01:41:03 2003 UTC (22 years, 6 months ago) by rms
Branch: MAIN
Changes since 1.318: +4 -0 lines
Diff to previous 1.318
*** empty log message ***


Revision 1.318 - (view) (download) (annotate) - [select for diffs]
Sun Apr 6 10:49:50 2003 UTC (22 years, 6 months ago) by pot
Branch: MAIN
Changes since 1.317: +5 -0 lines
Diff to previous 1.317
*** empty log message ***


Revision 1.169.4.35 - (view) (download) (annotate) - [select for diffs]
Sun Apr 6 10:47:16 2003 UTC (22 years, 6 months ago) by pot
Branch: EMACS_21_1_RC
Changes since 1.169.4.34: +5 -0 lines
Diff to previous 1.169.4.34 , to branch point 1.169
*** empty log message ***


Revision 1.260.2.1 - (view) (download) (annotate) - [select for diffs]
Fri Apr 4 06:19:46 2003 UTC (22 years, 6 months ago) by miles
Branch: lexbind
Changes since 1.260: +283 -49 lines
Diff to previous 1.260
Update from trunk.


Revision 1.169.4.34 - (view) (download) (annotate) - [select for diffs]
Tue Mar 18 15:19:40 2003 UTC (22 years, 7 months ago) by pot
Branch: EMACS_21_1_RC
CVS Tags: EMACS_21_3
Branch point for: ttn-vms-21-3-stash
Changes since 1.169.4.33: +4 -0 lines
Diff to previous 1.169.4.33 , to branch point 1.169
Emacs version 21.3


Revision 1.317 - (view) (download) (annotate) - [select for diffs]
Sun Mar 16 22:38:48 2003 UTC (22 years, 7 months ago) by pot
Branch: MAIN
Changes since 1.316: +5 -0 lines
Diff to previous 1.316
*** empty log message ***


Revision 1.169.4.33 - (view) (download) (annotate) - [select for diffs]
Sun Mar 16 22:24:31 2003 UTC (22 years, 7 months ago) by pot
Branch: EMACS_21_1_RC
Changes since 1.169.4.32: +5 -0 lines
Diff to previous 1.169.4.32 , to branch point 1.169
*** empty log message ***


Revision 1.316 - (view) (download) (annotate) - [select for diffs]
Mon Mar 3 18:30:10 2003 UTC (22 years, 7 months ago) by rlb
Branch: MAIN
Changes since 1.315: +6 -0 lines
Diff to previous 1.315
*** empty log message ***


Revision 1.315 - (view) (download) (annotate) - [select for diffs]
Sun Feb 23 17:07:58 2003 UTC (22 years, 8 months ago) by jas
Branch: MAIN
Changes since 1.314: +4 -0 lines
Diff to previous 1.314
*** empty log message ***


Revision 1.314 - (view) (download) (annotate) - [select for diffs]
Fri Feb 21 08:08:03 2003 UTC (22 years, 8 months ago) by lektu
Branch: MAIN
Changes since 1.313: +30 -26 lines
Diff to previous 1.313
*** empty log message ***


Revision 1.169.4.32 - (view) (download) (annotate) - [select for diffs]
Mon Feb 17 09:00:36 2003 UTC (22 years, 8 months ago) by lektu
Branch: EMACS_21_1_RC
Changes since 1.169.4.31: +4 -0 lines
Diff to previous 1.169.4.31 , to branch point 1.169
*** empty log message ***


Revision 1.313 - (view) (download) (annotate) - [select for diffs]
Thu Feb 13 00:24:02 2003 UTC (22 years, 8 months ago) by handa
Branch: MAIN
CVS Tags: RMAIL-MBOX-BASE
Branch point for: rmail-mbox-branch
Changes since 1.312: +4 -0 lines
Diff to previous 1.312
*** empty log message ***


Revision 1.312 - (view) (download) (annotate) - [select for diffs]
Sat Feb 8 17:27:17 2003 UTC (22 years, 8 months ago) by schwab
Branch: MAIN
Changes since 1.311: +5 -0 lines
Diff to previous 1.311
*** empty log message ***


Revision 1.311 - (view) (download) (annotate) - [select for diffs]
Tue Feb 4 14:56:31 2003 UTC (22 years, 8 months ago) by lektu
Branch: MAIN
Changes since 1.310: +3 -3 lines
Diff to previous 1.310
Trailing whitespace deleted.


Revision 1.310 - (view) (download) (annotate) - [select for diffs]
Fri Jan 31 15:07:11 2003 UTC (22 years, 9 months ago) by lektu
Branch: MAIN
Changes since 1.309: +8 -0 lines
Diff to previous 1.309
Cygwin support patch.


Revision 1.309 - (view) (download) (annotate) - [select for diffs]
Thu Jan 30 17:19:27 2003 UTC (22 years, 9 months ago) by jhd
Branch: MAIN
Changes since 1.308: +3 -3 lines
Diff to previous 1.308
Change email and real name.


Revision 1.308 - (view) (download) (annotate) - [select for diffs]
Wed Jan 29 00:16:14 2003 UTC (22 years, 9 months ago) by kfstorm
Branch: MAIN
Changes since 1.307: +5 -0 lines
Diff to previous 1.307
*** empty log message ***


Revision 1.307 - (view) (download) (annotate) - [select for diffs]
Tue Jan 28 23:49:08 2003 UTC (22 years, 9 months ago) by kfstorm
Branch: MAIN
Changes since 1.306: +1 -1 lines
Diff to previous 1.306
Corrected misc. typos like missing : after file names,
missing file name suffixes, and * used as prefix on non-file entries.


Revision 1.306 - (view) (download) (annotate) - [select for diffs]
Wed Jan 22 19:56:44 2003 UTC (22 years, 9 months ago) by schwab
Branch: MAIN
Changes since 1.305: +5 -0 lines
Diff to previous 1.305
*** empty log message ***


Revision 1.305 - (view) (download) (annotate) - [select for diffs]
Wed Jan 22 17:13:36 2003 UTC (22 years, 9 months ago) by rost
Branch: MAIN
Changes since 1.304: +4 -0 lines
Diff to previous 1.304
*** empty log message ***


Revision 1.169.4.31 - (view) (download) (annotate) - [select for diffs]
Mon Jan 20 11:10:20 2003 UTC (22 years, 9 months ago) by pot
Branch: EMACS_21_1_RC
CVS Tags: EMACS_PRETEST_21_2_94, EMACS_PRETEST_21_2_95
Changes since 1.169.4.30: +0 -4 lines
Diff to previous 1.169.4.30 , to branch point 1.169
21.3 not released yet


Revision 1.304 - (view) (download) (annotate) - [select for diffs]
Mon Jan 20 05:35:30 2003 UTC (22 years, 9 months ago) by jhd
Branch: MAIN
Changes since 1.303: +4 -0 lines
Diff to previous 1.303
Fixed --with-gtk


Revision 1.303 - (view) (download) (annotate) - [select for diffs]
Sun Jan 19 21:49:59 2003 UTC (22 years, 9 months ago) by jhd
Branch: MAIN
Changes since 1.302: +6 -0 lines
Diff to previous 1.302
GTK version


Revision 1.169.4.30 - (view) (download) (annotate) - [select for diffs]
Fri Jan 17 15:40:13 2003 UTC (22 years, 9 months ago) by pot
Branch: EMACS_21_1_RC
Changes since 1.169.4.29: +4 -0 lines
Diff to previous 1.169.4.29 , to branch point 1.169
Version 21.3 released


Revision 1.302 - (view) (download) (annotate) - [select for diffs]
Wed Jan 15 10:14:14 2003 UTC (22 years, 9 months ago) by pot
Branch: MAIN
Changes since 1.301: +1 -3 lines
Diff to previous 1.301
Entry corrected.


Revision 1.301 - (view) (download) (annotate) - [select for diffs]
Mon Jan 13 23:14:49 2003 UTC (22 years, 9 months ago) by pot
Branch: MAIN
Changes since 1.300: +1 -0 lines
Diff to previous 1.300
*** empty log message ***


Revision 1.300 - (view) (download) (annotate) - [select for diffs]
Mon Jan 13 23:12:44 2003 UTC (22 years, 9 months ago) by pot
Branch: MAIN
Changes since 1.299: +1 -0 lines
Diff to previous 1.299
*** empty log message ***


Revision 1.299 - (view) (download) (annotate) - [select for diffs]
Mon Jan 13 23:08:23 2003 UTC (22 years, 9 months ago) by pot
Branch: MAIN
Changes since 1.298: +4 -0 lines
Diff to previous 1.298
*** empty log message ***


Revision 1.298 - (view) (download) (annotate) - [select for diffs]
Tue Jan 7 05:46:31 2003 UTC (22 years, 9 months ago) by tamm
Branch: MAIN
Changes since 1.297: +7 -0 lines
Diff to previous 1.297
	* configure.in: New option, --enable-carbon-app, to specify
	that the application should be installed
	* Makefile.in (install-arch-dep): On Mac OS X, install the
	Emacs.app application if carbon-app is enabled


Revision 1.297 - (view) (download) (annotate) - [select for diffs]
Mon Jan 6 21:16:14 2003 UTC (22 years, 9 months ago) by fx
Branch: MAIN
Changes since 1.296: +6 -1 lines
Diff to previous 1.296
*** empty log message ***


Revision 1.296 - (view) (download) (annotate) - [select for diffs]
Mon Jan 6 14:54:51 2003 UTC (22 years, 9 months ago) by dak
Branch: MAIN
Changes since 1.295: +3 -0 lines
Diff to previous 1.295
*** empty log message ***


Revision 1.295 - (view) (download) (annotate) - [select for diffs]
Mon Jan 6 14:50:21 2003 UTC (22 years, 9 months ago) by dak
Branch: MAIN
Changes since 1.294: +4 -0 lines
Diff to previous 1.294
*** empty log message ***


Revision 1.294 - (view) (download) (annotate) - [select for diffs]
Sun Dec 15 19:01:33 2002 UTC (22 years, 10 months ago) by rost
Branch: MAIN
Changes since 1.293: +0 -5 lines
Diff to previous 1.293
Move entry for mail/smtpmail.el from ChangeLog to lisp/ChangeLog.


Revision 1.293 - (view) (download) (annotate) - [select for diffs]
Sun Dec 15 07:27:08 2002 UTC (22 years, 10 months ago) by jas
Branch: MAIN
Changes since 1.292: +5 -0 lines
Diff to previous 1.292
*** empty log message ***


Revision 1.292 - (view) (download) (annotate) - [select for diffs]
Mon Dec 9 19:38:26 2002 UTC (22 years, 10 months ago) by rost
Branch: MAIN
Changes since 1.291: +7 -2 lines
Diff to previous 1.291
*** empty log message ***


Revision 1.169.4.29 - (view) (download) (annotate) - [select for diffs]
Mon Dec 9 18:19:15 2002 UTC (22 years, 10 months ago) by fx
Branch: EMACS_21_1_RC
Changes since 1.169.4.28: +4 -0 lines
Diff to previous 1.169.4.28 , to branch point 1.169
*** empty log message ***


Revision 1.291 - (view) (download) (annotate) - [select for diffs]
Mon Dec 9 18:07:45 2002 UTC (22 years, 10 months ago) by fx
Branch: MAIN
Changes since 1.290: +4 -0 lines
Diff to previous 1.290
*** empty log message ***


Revision 1.169.4.28 - (view) (download) (annotate) - [select for diffs]
Sun Dec 8 18:38:41 2002 UTC (22 years, 10 months ago) by fx
Branch: EMACS_21_1_RC
Changes since 1.169.4.27: +4 -0 lines
Diff to previous 1.169.4.27 , to branch point 1.169
*** empty log message ***


Revision 1.290 - (view) (download) (annotate) - [select for diffs]
Sun Dec 8 13:18:34 2002 UTC (22 years, 10 months ago) by schwab
Branch: MAIN
Changes since 1.289: +4 -0 lines
Diff to previous 1.289
*** empty log message ***


Revision 1.289 - (view) (download) (annotate) - [select for diffs]
Wed Nov 27 22:54:07 2002 UTC (22 years, 11 months ago) by fx
Branch: MAIN
Changes since 1.288: +6 -0 lines
Diff to previous 1.288
*** empty log message ***


Revision 1.169.4.27 - (view) (download) (annotate) - [select for diffs]
Fri Nov 22 11:33:59 2002 UTC (22 years, 11 months ago) by lektu
Branch: EMACS_21_1_RC
CVS Tags: EMACS_PRETEST_21_2_93
Changes since 1.169.4.26: +4 -0 lines
Diff to previous 1.169.4.26 , to branch point 1.169
*** empty log message ***


Revision 1.288 - (view) (download) (annotate) - [select for diffs]
Fri Nov 22 11:29:23 2002 UTC (22 years, 11 months ago) by lektu
Branch: MAIN
Changes since 1.287: +4 -0 lines
Diff to previous 1.287
*** empty log message ***


Revision 1.287 - (view) (download) (annotate) - [select for diffs]
Wed Nov 20 22:34:01 2002 UTC (22 years, 11 months ago) by kfogel
Branch: MAIN
Changes since 1.286: +4 -0 lines
Diff to previous 1.286
* autogen.sh: New file.


Revision 1.286 - (view) (download) (annotate) - [select for diffs]
Mon Nov 18 19:24:03 2002 UTC (22 years, 11 months ago) by fx
Branch: MAIN
Changes since 1.285: +3 -1 lines
Diff to previous 1.285
*** empty log message ***


Revision 1.285 - (view) (download) (annotate) - [select for diffs]
Mon Nov 18 16:50:02 2002 UTC (22 years, 11 months ago) by fx
Branch: MAIN
Changes since 1.284: +11 -0 lines
Diff to previous 1.284
*** empty log message ***


Revision 1.284 - (view) (download) (annotate) - [select for diffs]
Mon Nov 18 06:42:17 2002 UTC (22 years, 11 months ago) by rost
Branch: MAIN
Changes since 1.283: +4 -0 lines
Diff to previous 1.283
*** empty log message ***


Revision 1.169.4.26 - (view) (download) (annotate) - [select for diffs]
Thu Nov 14 13:30:42 2002 UTC (22 years, 11 months ago) by pot
Branch: EMACS_21_1_RC
Changes since 1.169.4.25: +37 -33 lines
Diff to previous 1.169.4.25 , to branch point 1.169
sparc-sun-solaris2.8


Revision 1.283 - (view) (download) (annotate) - [select for diffs]
Thu Nov 14 13:29:05 2002 UTC (22 years, 11 months ago) by pot
Branch: MAIN
Changes since 1.282: +4 -0 lines
Diff to previous 1.282
*** empty log message ***


Revision 1.282 - (view) (download) (annotate) - [select for diffs]
Mon Nov 11 09:03:25 2002 UTC (22 years, 11 months ago) by lektu
Branch: MAIN
Changes since 1.281: +4 -0 lines
Diff to previous 1.281
*** empty log message ***


Revision 1.281 - (view) (download) (annotate) - [select for diffs]
Fri Nov 8 12:32:10 2002 UTC (22 years, 11 months ago) by fx
Branch: MAIN
Changes since 1.280: +6 -0 lines
Diff to previous 1.280
*** empty log message ***


Revision 1.280 - (view) (download) (annotate) - [select for diffs]
Thu Nov 7 01:02:44 2002 UTC (22 years, 11 months ago) by miles
Branch: MAIN
Changes since 1.279: +5 -0 lines
Diff to previous 1.279
*** empty log message ***


Revision 1.279 - (view) (download) (annotate) - [select for diffs]
Wed Nov 6 05:13:58 2002 UTC (22 years, 11 months ago) by rms
Branch: MAIN
Changes since 1.278: +5 -0 lines
Diff to previous 1.278
*** empty log message ***


Revision 1.278 - (view) (download) (annotate) - [select for diffs]
Wed Oct 30 18:52:42 2002 UTC (23 years ago) by fx
Branch: MAIN
Changes since 1.277: +10 -6 lines
Diff to previous 1.277
*** empty log message ***


Revision 1.169.4.25 - (view) (download) (annotate) - [select for diffs]
Tue Oct 15 21:15:52 2002 UTC (23 years ago) by rms
Branch: EMACS_21_1_RC
CVS Tags: EMACS_PRETEST_21_2_92
Changes since 1.169.4.24: +5 -0 lines
Diff to previous 1.169.4.24 , to branch point 1.169
*** empty log message ***


Revision 1.277 - (view) (download) (annotate) - [select for diffs]
Tue Oct 1 17:11:06 2002 UTC (23 years, 1 month ago) by lektu
Branch: MAIN
Changes since 1.276: +4 -0 lines
Diff to previous 1.276
*** empty log message ***


Revision 1.276 - (view) (download) (annotate) - [select for diffs]
Thu Sep 19 15:25:38 2002 UTC (23 years, 1 month ago) by rms
Branch: MAIN
Changes since 1.275: +4 -0 lines
Diff to previous 1.275
*** empty log message ***


Revision 1.275 - (view) (download) (annotate) - [select for diffs]
Sun Sep 15 01:53:47 2002 UTC (23 years, 1 month ago) by rms
Branch: MAIN
Changes since 1.274: +5 -0 lines
Diff to previous 1.274
*** empty log message ***


Revision 1.274 - (view) (download) (annotate) - [select for diffs]
Wed Sep 11 21:03:41 2002 UTC (23 years, 1 month ago) by monnier
Branch: MAIN
Changes since 1.273: +24 -20 lines
Diff to previous 1.273
*** empty log message ***


Revision 1.273 - (view) (download) (annotate) - [select for diffs]
Tue Sep 10 16:40:18 2002 UTC (23 years, 1 month ago) by rms
Branch: MAIN
Changes since 1.272: +4 -0 lines
Diff to previous 1.272
*** empty log message ***


Revision 1.272 - (view) (download) (annotate) - [select for diffs]
Mon Sep 9 19:20:40 2002 UTC (23 years, 1 month ago) by rms
Branch: MAIN
Changes since 1.271: +7 -0 lines
Diff to previous 1.271
*** empty log message ***


Revision 1.271 - (view) (download) (annotate) - [select for diffs]
Fri Sep 6 20:01:01 2002 UTC (23 years, 1 month ago) by rms
Branch: MAIN
Changes since 1.270: +7 -0 lines
Diff to previous 1.270
*** empty log message ***


Revision 1.270 - (view) (download) (annotate) - [select for diffs]
Fri Sep 6 13:42:23 2002 UTC (23 years, 1 month ago) by kai
Branch: MAIN
Changes since 1.269: +4 -0 lines
Diff to previous 1.269
Fix typo.


Revision 1.238.2.4 - (view) (download) (annotate) - [select for diffs]
Thu Sep 5 17:35:59 2002 UTC (23 years, 1 month ago) by fx
Branch: emacs-unicode
Changes since 1.238.2.3: +6 -1 lines
Diff to previous 1.238.2.3 , to branch point 1.238 , to next main 1.876
*** empty log message ***


Revision 1.169.4.24 - (view) (download) (annotate) - [select for diffs]
Mon Aug 26 10:14:39 2002 UTC (23 years, 2 months ago) by kfstorm
Branch: EMACS_21_1_RC
CVS Tags: EMACS_PRETEST_21_2_91
Changes since 1.169.4.23: +6 -0 lines
Diff to previous 1.169.4.23 , to branch point 1.169
*** empty log message ***


Revision 1.269 - (view) (download) (annotate) - [select for diffs]
Mon Aug 26 10:10:42 2002 UTC (23 years, 2 months ago) by kfstorm
Branch: MAIN
Changes since 1.268: +6 -0 lines
Diff to previous 1.268
*** empty log message ***


Revision 1.238.2.3 - (view) (download) (annotate) - [select for diffs]
Wed Jul 31 22:28:41 2002 UTC (23 years, 3 months ago) by fx
Branch: emacs-unicode
Changes since 1.238.2.2: +12 -0 lines
Diff to previous 1.238.2.2 , to branch point 1.238
*** empty log message ***


Revision 1.268 - (view) (download) (annotate) - [select for diffs]
Mon Jul 29 02:01:37 2002 UTC (23 years, 3 months ago) by rms
Branch: MAIN
Changes since 1.267: +2 -0 lines
Diff to previous 1.267
*** empty log message ***


Revision 1.267 - (view) (download) (annotate) - [select for diffs]
Wed Jul 24 19:43:21 2002 UTC (23 years, 3 months ago) by rost
Branch: MAIN
Changes since 1.266: +4 -0 lines
Diff to previous 1.266
*** empty log message ***


Revision 1.266 - (view) (download) (annotate) - [select for diffs]
Wed Jul 24 16:00:59 2002 UTC (23 years, 3 months ago) by rms
Branch: MAIN
Changes since 1.265: +4 -0 lines
Diff to previous 1.265
*** empty log message ***


Revision 1.265 - (view) (download) (annotate) - [select for diffs]
Sun Jul 21 20:21:25 2002 UTC (23 years, 3 months ago) by rms
Branch: MAIN
Changes since 1.264: +8 -0 lines
Diff to previous 1.264
*** empty log message ***


Revision 1.169.4.23 - (view) (download) (annotate) - [select for diffs]
Mon Jul 8 22:14:25 2002 UTC (23 years, 3 months ago) by fx
Branch: EMACS_21_1_RC
Changes since 1.169.4.22: +5 -0 lines
Diff to previous 1.169.4.22 , to branch point 1.169
*** empty log message ***


Revision 1.238.2.2 - (view) (download) (annotate) - [select for diffs]
Mon Jul 1 17:37:25 2002 UTC (23 years, 4 months ago) by fx
Branch: emacs-unicode
Changes since 1.238.2.1: +1 -5234 lines
Diff to previous 1.238.2.1 , to branch point 1.238
Truncate to reflect only the branch.


Revision 1.264 - (view) (download) (annotate) - [select for diffs]
Fri Jun 21 21:00:03 2002 UTC (23 years, 4 months ago) by pj
Branch: MAIN
Changes since 1.263: +4 -0 lines
Diff to previous 1.263
*** empty log message ***


Revision 1.263 - (view) (download) (annotate) - [select for diffs]
Tue Jun 18 11:28:41 2002 UTC (23 years, 4 months ago) by kai
Branch: MAIN
Changes since 1.262: +4 -0 lines
Diff to previous 1.262
(install-arch-indep, uninstall): Add Tramp.


Revision 1.262 - (view) (download) (annotate) - [select for diffs]
Mon Jun 17 11:46:10 2002 UTC (23 years, 4 months ago) by kai
Branch: MAIN
Changes since 1.261: +4 -0 lines
Diff to previous 1.261
* info/dir (File): Add an entry for Tramp.

* Makefile.in (INFO_TARGETS, DVI_TARGETS): Add Tramp.
(../info/tramp, tramp.dvi): New targets.


Revision 1.261 - (view) (download) (annotate) - [select for diffs]
Mon Jun 17 06:08:23 2002 UTC (23 years, 4 months ago) by eliz
Branch: MAIN
Changes since 1.260: +4 -0 lines
Diff to previous 1.260
*** empty log message ***


Revision 1.238.2.1 - (view) (download) (annotate) - [select for diffs]
Tue Jun 11 18:32:06 2002 UTC (23 years, 4 months ago) by fx
Branch: emacs-unicode
Changes since 1.238: +6 -0 lines
Diff to previous 1.238
*** empty log message ***


Revision 1.260 - (view) (download) (annotate) - [select for diffs]
Fri Jun 7 11:17:54 2002 UTC (23 years, 4 months ago) by schwab
Branch: MAIN
Branch point for: lexbind
Changes since 1.259: +4 -0 lines
Diff to previous 1.259
Add Support for x86-64.


Revision 1.259 - (view) (download) (annotate) - [select for diffs]
Fri May 31 15:13:32 2002 UTC (23 years, 5 months ago) by eliz
Branch: MAIN
Changes since 1.258: +4 -0 lines
Diff to previous 1.258
*** empty log message ***


Revision 1.258 - (view) (download) (annotate) - [select for diffs]
Mon May 27 06:44:24 2002 UTC (23 years, 5 months ago) by eggert
Branch: MAIN
Changes since 1.257: +4 -0 lines
Diff to previous 1.257
* config.guess, config.sub: Updated from master source.


Revision 1.169.4.22 - (view) (download) (annotate) - [select for diffs]
Mon May 27 06:31:36 2002 UTC (23 years, 5 months ago) by eggert
Branch: EMACS_21_1_RC
Changes since 1.169.4.21: +4 -0 lines
Diff to previous 1.169.4.21 , to branch point 1.169
* config.guess, config.sub: Updated from master source.


Revision 1.257 - (view) (download) (annotate) - [select for diffs]
Thu May 9 15:03:30 2002 UTC (23 years, 5 months ago) by rms
Branch: MAIN
Changes since 1.256: +4 -0 lines
Diff to previous 1.256
*** empty log message ***


Revision 1.169.4.21 - (view) (download) (annotate) - [select for diffs]
Tue May 7 17:12:50 2002 UTC (23 years, 5 months ago) by eliz
Branch: EMACS_21_1_RC
Changes since 1.169.4.20: +4 -0 lines
Diff to previous 1.169.4.20 , to branch point 1.169
*** empty log message ***


Revision 1.256 - (view) (download) (annotate) - [select for diffs]
Sat May 4 10:05:49 2002 UTC (23 years, 5 months ago) by pj
Branch: MAIN
Changes since 1.255: +5 -1 lines
Diff to previous 1.255
*** empty log message ***


Revision 1.255 - (view) (download) (annotate) - [select for diffs]
Wed May 1 04:30:59 2002 UTC (23 years, 6 months ago) by akochoi
Branch: MAIN
Changes since 1.254: +6 -0 lines
Diff to previous 1.254
2002-04-30  Andrew Choi  <akochoi@shaw.ca>

        * configure.in: Provide documentation string when defining
        variable HAVE_CARBON.  Also define HAVE_WINDOW_SYSTEM, HAVE_MOUSE,
        and HAVE_MENUS in AH_BOTTOM if HAVE_CARBON is defined.


Revision 1.254 - (view) (download) (annotate) - [select for diffs]
Mon Apr 29 22:47:02 2002 UTC (23 years, 6 months ago) by walters
Branch: MAIN
Changes since 1.253: +5 -0 lines
Diff to previous 1.253
*** empty log message ***


Revision 1.253 - (view) (download) (annotate) - [select for diffs]
Mon Apr 29 08:07:58 2002 UTC (23 years, 6 months ago) by pj
Branch: MAIN
Changes since 1.252: +4 -0 lines
Diff to previous 1.252
*** empty log message ***


Revision 1.252 - (view) (download) (annotate) - [select for diffs]
Fri Apr 26 23:39:04 2002 UTC (23 years, 6 months ago) by akochoi
Branch: MAIN
Changes since 1.251: +7 -0 lines
Diff to previous 1.251
Patch for building Emacs on Mac OS X.  April 26, 2002.  See ChangeLog,
lisp/ChangeLog, and src/ChangeLog for list of changes.


Revision 1.251 - (view) (download) (annotate) - [select for diffs]
Thu Apr 25 05:49:26 2002 UTC (23 years, 6 months ago) by pj
Branch: MAIN
Changes since 1.250: +4 -0 lines
Diff to previous 1.250
*** empty log message ***


Revision 1.250 - (view) (download) (annotate) - [select for diffs]
Tue Apr 23 09:53:11 2002 UTC (23 years, 6 months ago) by schwab
Branch: MAIN
Changes since 1.249: +7 -0 lines
Diff to previous 1.249
.


Revision 1.249 - (view) (download) (annotate) - [select for diffs]
Tue Apr 16 17:39:22 2002 UTC (23 years, 6 months ago) by eliz
Branch: MAIN
Changes since 1.248: +4 -0 lines
Diff to previous 1.248
*** empty log message ***


Revision 1.248 - (view) (download) (annotate) - [select for diffs]
Mon Apr 15 13:13:44 2002 UTC (23 years, 6 months ago) by schwab
Branch: MAIN
Changes since 1.247: +8 -0 lines
Diff to previous 1.247
.


Revision 1.247 - (view) (download) (annotate) - [select for diffs]
Wed Apr 10 19:03:50 2002 UTC (23 years, 6 months ago) by walters
Branch: MAIN
Changes since 1.246: +5 -0 lines
Diff to previous 1.246
*** empty log message ***


Revision 1.246 - (view) (download) (annotate) - [select for diffs]
Mon Apr 8 06:16:33 2002 UTC (23 years, 6 months ago) by pj
Branch: MAIN
Changes since 1.245: +4 -0 lines
Diff to previous 1.245
*** empty log message ***


Revision 1.245 - (view) (download) (annotate) - [select for diffs]
Mon Mar 18 14:13:15 2002 UTC (23 years, 7 months ago) by kfstorm
Branch: MAIN
Changes since 1.244: +5 -0 lines
Diff to previous 1.244
*** empty log message ***


Revision 1.169.4.20 - (view) (download) (annotate) - [select for diffs]
Sat Mar 16 11:18:13 2002 UTC (23 years, 7 months ago) by eliz
Branch: EMACS_21_1_RC
CVS Tags: EMACS_21_2, ttn-vms-21-2-B2
Branch point for: ttn-vms-21-2-stash
Changes since 1.169.4.19: +5 -1 lines
Diff to previous 1.169.4.19 , to branch point 1.169
Announce the release of v21.2.


Revision 1.169.4.19 - (view) (download) (annotate) - [select for diffs]
Fri Mar 15 12:45:35 2002 UTC (23 years, 7 months ago) by eliz
Branch: EMACS_21_1_RC
Changes since 1.169.4.18: +4 -0 lines
Diff to previous 1.169.4.18 , to branch point 1.169
*** empty log message ***


Revision 1.244 - (view) (download) (annotate) - [select for diffs]
Fri Mar 15 12:17:35 2002 UTC (23 years, 7 months ago) by eliz
Branch: MAIN
Changes since 1.243: +4 -0 lines
Diff to previous 1.243
*** empty log message ***


Revision 1.243 - (view) (download) (annotate) - [select for diffs]
Sun Mar 10 16:23:27 2002 UTC (23 years, 7 months ago) by jhd
Branch: MAIN
Changes since 1.242: +4 -0 lines
Diff to previous 1.242
*** empty log message ***


Revision 1.242 - (view) (download) (annotate) - [select for diffs]
Tue Mar 5 21:04:21 2002 UTC (23 years, 7 months ago) by rms
Branch: MAIN
Changes since 1.241: +5 -0 lines
Diff to previous 1.241
*** empty log message ***


Revision 1.241 - (view) (download) (annotate) - [select for diffs]
Sun Mar 3 00:26:15 2002 UTC (23 years, 8 months ago) by kfstorm
Branch: MAIN
Changes since 1.240: +4 -0 lines
Diff to previous 1.240
*** empty log message ***


Revision 1.240 - (view) (download) (annotate) - [select for diffs]
Fri Mar 1 16:24:37 2002 UTC (23 years, 8 months ago) by rms
Branch: MAIN
Changes since 1.239: +5 -0 lines
Diff to previous 1.239
*** empty log message ***


Revision 1.239 - (view) (download) (annotate) - [select for diffs]
Thu Feb 28 04:17:55 2002 UTC (23 years, 8 months ago) by rms
Branch: MAIN
Changes since 1.238: +6 -0 lines
Diff to previous 1.238
*** empty log message ***


Revision 1.169.4.18 - (view) (download) (annotate) - [select for diffs]
Fri Feb 22 12:56:33 2002 UTC (23 years, 8 months ago) by eliz
Branch: EMACS_21_1_RC
Changes since 1.169.4.17: +4 -0 lines
Diff to previous 1.169.4.17 , to branch point 1.169
*** empty log message ***


Revision 1.238 - (view) (download) (annotate) - [select for diffs]
Tue Feb 19 06:50:24 2002 UTC (23 years, 8 months ago) by eggert
Branch: MAIN
CVS Tags: emacs-unicode-base
Branch point for: emacs-unicode
Changes since 1.237: +6 -1 lines
Diff to previous 1.237
* make-dist: Port to POSIX 1003.1-2001, which doesn't allow "head -1".
"sed q" is a portable equivalent to plain "head -1".


Revision 1.169.4.17 - (view) (download) (annotate) - [select for diffs]
Tue Feb 19 06:47:14 2002 UTC (23 years, 8 months ago) by eggert
Branch: EMACS_21_1_RC
Changes since 1.169.4.16: +6 -1 lines
Diff to previous 1.169.4.16 , to branch point 1.169
* make-dist: Port to POSIX 1003.1-2001, which doesn't allow "head -1".
"sed q" is a portable equivalent to plain "head -1".


Revision 1.237 - (view) (download) (annotate) - [select for diffs]
Wed Feb 13 15:49:26 2002 UTC (23 years, 8 months ago) by rms
Branch: MAIN
Changes since 1.236: +6 -0 lines
Diff to previous 1.236
*** empty log message ***


Revision 1.236 - (view) (download) (annotate) - [select for diffs]
Sun Feb 10 17:38:32 2002 UTC (23 years, 8 months ago) by kfstorm
Branch: MAIN
Changes since 1.235: +0 -19 lines
Diff to previous 1.235
Moved misplaced entries signed Michael Kifer to lisp/ChangeLog.


Revision 1.235 - (view) (download) (annotate) - [select for diffs]
Sun Feb 10 06:46:12 2002 UTC (23 years, 8 months ago) by kifer
Branch: MAIN
Changes since 1.234: +19 -0 lines
Diff to previous 1.234
2002-02-10  Michael Kifer  <kifer@cs.stonybrook.edu>

	* viper-util.el (viper-read-key-sequence): fixed so it'll read
	fast key sequences in emacs native mode
	(viper-events-to-keys): deleted

	* viper.el (describe-key, describe-key-briefly): get rid of
	viper-events-to-keys.

	* ediff-init.el (ediff-has-gutter-support): Steven Turnbull's patch.

	* ediff-wind.el (ediff-setup-control-frame): Use
	ediff-has-gutter-support.

	* ediff-util.el (ediff-dispose-of-variant-according-to-user):
	check if buff is alive.

	* ediff.el: typo in comment.


Revision 1.234 - (view) (download) (annotate) - [select for diffs]
Fri Feb 8 14:11:56 2002 UTC (23 years, 8 months ago) by rms
Branch: MAIN
Changes since 1.233: +4 -0 lines
Diff to previous 1.233
*** empty log message ***


Revision 1.169.4.16 - (view) (download) (annotate) - [select for diffs]
Sat Feb 2 14:55:35 2002 UTC (23 years, 8 months ago) by eliz
Branch: EMACS_21_1_RC
Changes since 1.169.4.15: +5 -0 lines
Diff to previous 1.169.4.15 , to branch point 1.169
*** empty log message ***


Revision 1.169.4.15 - (view) (download) (annotate) - [select for diffs]
Mon Jan 28 16:37:48 2002 UTC (23 years, 9 months ago) by eliz
Branch: EMACS_21_1_RC
Changes since 1.169.4.14: +9 -0 lines
Diff to previous 1.169.4.14 , to branch point 1.169
*** empty log message ***


Revision 1.233 - (view) (download) (annotate) - [select for diffs]
Sun Jan 27 10:03:32 2002 UTC (23 years, 9 months ago) by eliz
Branch: MAIN
Changes since 1.232: +4 -0 lines
Diff to previous 1.232
*** empty log message ***


Revision 1.232 - (view) (download) (annotate) - [select for diffs]
Fri Jan 11 09:39:53 2002 UTC (23 years, 9 months ago) by eliz
Branch: MAIN
Changes since 1.231: +5 -0 lines
Diff to previous 1.231
*** empty log message ***


Revision 1.231 - (view) (download) (annotate) - [select for diffs]
Mon Dec 31 19:44:09 2001 UTC (23 years, 10 months ago) by eliz
Branch: MAIN
Changes since 1.230: +0 -20 lines
Diff to previous 1.230
Remove the "regenerated" entries.


Revision 1.230 - (view) (download) (annotate) - [select for diffs]
Sun Dec 30 06:40:17 2001 UTC (23 years, 10 months ago) by eliz
Branch: MAIN
Changes since 1.229: +0 -4 lines
Diff to previous 1.229
Remove the "configure: Regenerated" entry.


Revision 1.229 - (view) (download) (annotate) - [select for diffs]
Sat Dec 29 09:24:31 2001 UTC (23 years, 10 months ago) by eliz
Branch: MAIN
Changes since 1.228: +4 -0 lines
Diff to previous 1.228
*** empty log message ***


Revision 1.228 - (view) (download) (annotate) - [select for diffs]
Sat Dec 29 01:12:35 2001 UTC (23 years, 10 months ago) by kfstorm
Branch: MAIN
Changes since 1.227: +4 -0 lines
Diff to previous 1.227
*** empty log message ***


Revision 1.227 - (view) (download) (annotate) - [select for diffs]
Fri Dec 28 19:06:34 2001 UTC (23 years, 10 months ago) by rms
Branch: MAIN
Changes since 1.226: +4 -0 lines
Diff to previous 1.226
*** empty log message ***


Revision 1.226 - (view) (download) (annotate) - [select for diffs]
Fri Dec 21 08:59:17 2001 UTC (23 years, 10 months ago) by eliz
Branch: MAIN
Changes since 1.225: +15 -0 lines
Diff to previous 1.225
*** empty log message ***


Revision 1.225 - (view) (download) (annotate) - [select for diffs]
Thu Dec 13 07:20:22 2001 UTC (23 years, 10 months ago) by eliz
Branch: MAIN
Changes since 1.224: +4 -0 lines
Diff to previous 1.224
*** empty log message ***


Revision 1.224 - (view) (download) (annotate) - [select for diffs]
Tue Dec 11 06:02:02 2001 UTC (23 years, 10 months ago) by rms
Branch: MAIN
Changes since 1.223: +4 -0 lines
Diff to previous 1.223
*** empty log message ***


Revision 1.223 - (view) (download) (annotate) - [select for diffs]
Sat Dec 8 21:06:01 2001 UTC (23 years, 10 months ago) by pj
Branch: MAIN
Changes since 1.222: +5 -0 lines
Diff to previous 1.222
*** empty log message ***


Revision 1.222 - (view) (download) (annotate) - [select for diffs]
Fri Dec 7 05:49:20 2001 UTC (23 years, 10 months ago) by eggert
Branch: MAIN
Changes since 1.221: +8 -0 lines
Diff to previous 1.221
* configure.in (AC_PREREQ): Bump from 2.50 to 2.51; needed for vfork.
(AC_FUNC_VFORK): Remove.
(AC_FUNC_FORK): Add.
(HAVE_DES_H, HAVE_KRB5_H): Properly quote args of AC_CHECK_HEADERS;
this is required by recent Autoconf versions.


Revision 1.221 - (view) (download) (annotate) - [select for diffs]
Sun Dec 2 09:29:45 2001 UTC (23 years, 10 months ago) by pj
Branch: MAIN
Changes since 1.220: +5 -0 lines
Diff to previous 1.220
*** empty log message ***


Revision 1.220 - (view) (download) (annotate) - [select for diffs]
Thu Nov 29 17:44:17 2001 UTC (23 years, 11 months ago) by pj
Branch: MAIN
Changes since 1.219: +4 -0 lines
Diff to previous 1.219
*** empty log message ***


Revision 1.219 - (view) (download) (annotate) - [select for diffs]
Thu Nov 29 12:06:52 2001 UTC (23 years, 11 months ago) by gerd
Branch: MAIN
Changes since 1.218: +4 -0 lines
Diff to previous 1.218
*** empty log message ***


Revision 1.218 - (view) (download) (annotate) - [select for diffs]
Thu Nov 29 07:28:41 2001 UTC (23 years, 11 months ago) by pj
Branch: MAIN
Changes since 1.217: +3 -0 lines
Diff to previous 1.217
*** empty log message ***


Revision 1.217 - (view) (download) (annotate) - [select for diffs]
Thu Nov 29 06:45:59 2001 UTC (23 years, 11 months ago) by pj
Branch: MAIN
Changes since 1.216: +4 -0 lines
Diff to previous 1.216
*** empty log message ***


Revision 1.216 - (view) (download) (annotate) - [select for diffs]
Thu Nov 29 00:48:01 2001 UTC (23 years, 11 months ago) by rms
Branch: MAIN
Changes since 1.215: +4 -0 lines
Diff to previous 1.215
*** empty log message ***


Revision 1.215 - (view) (download) (annotate) - [select for diffs]
Mon Nov 26 11:01:20 2001 UTC (23 years, 11 months ago) by rms
Branch: MAIN
Changes since 1.214: +7 -0 lines
Diff to previous 1.214
*** empty log message ***


Revision 1.214 - (view) (download) (annotate) - [select for diffs]
Sat Nov 24 16:42:41 2001 UTC (23 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.213: +4 -1 lines
Diff to previous 1.213
*** empty log message ***


Revision 1.213 - (view) (download) (annotate) - [select for diffs]
Sat Nov 24 11:49:24 2001 UTC (23 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.212: +6 -1 lines
Diff to previous 1.212
*** empty log message ***


Revision 1.212 - (view) (download) (annotate) - [select for diffs]
Sat Nov 24 11:41:23 2001 UTC (23 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.211: +2 -0 lines
Diff to previous 1.211
*** empty log message ***


Revision 1.211 - (view) (download) (annotate) - [select for diffs]
Sat Nov 24 11:29:23 2001 UTC (23 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.210: +5 -1 lines
Diff to previous 1.210
*** empty log message ***


Revision 1.210 - (view) (download) (annotate) - [select for diffs]
Sat Nov 24 10:48:21 2001 UTC (23 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.209: +7 -0 lines
Diff to previous 1.209
*** empty log message ***


Revision 1.209 - (view) (download) (annotate) - [select for diffs]
Fri Nov 23 11:19:23 2001 UTC (23 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.208: +3 -0 lines
Diff to previous 1.208
*** empty log message ***


Revision 1.208 - (view) (download) (annotate) - [select for diffs]
Fri Nov 23 11:12:51 2001 UTC (23 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.207: +4 -0 lines
Diff to previous 1.207
*** empty log message ***


Revision 1.207 - (view) (download) (annotate) - [select for diffs]
Fri Nov 23 01:28:37 2001 UTC (23 years, 11 months ago) by walters
Branch: MAIN
Changes since 1.206: +2 -0 lines
Diff to previous 1.206
*** empty log message ***


Revision 1.206 - (view) (download) (annotate) - [select for diffs]
Thu Nov 22 06:05:36 2001 UTC (23 years, 11 months ago) by walters
Branch: MAIN
Changes since 1.205: +4 -0 lines
Diff to previous 1.205
*** empty log message ***


Revision 1.205 - (view) (download) (annotate) - [select for diffs]
Sat Nov 17 09:38:14 2001 UTC (23 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.204: +5 -0 lines
Diff to previous 1.204
*** empty log message ***


Revision 1.204 - (view) (download) (annotate) - [select for diffs]
Fri Nov 16 14:28:23 2001 UTC (23 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.203: +6 -0 lines
Diff to previous 1.203
*** empty log message ***


Revision 1.203 - (view) (download) (annotate) - [select for diffs]
Thu Nov 15 21:56:09 2001 UTC (23 years, 11 months ago) by pj
Branch: MAIN
Changes since 1.202: +2 -0 lines
Diff to previous 1.202
*** empty log message ***


Revision 1.202 - (view) (download) (annotate) - [select for diffs]
Thu Nov 15 20:49:01 2001 UTC (23 years, 11 months ago) by pj
Branch: MAIN
Changes since 1.201: +2 -0 lines
Diff to previous 1.201
*** empty log message ***


Revision 1.201 - (view) (download) (annotate) - [select for diffs]
Thu Nov 15 20:35:05 2001 UTC (23 years, 11 months ago) by pj
Branch: MAIN
Changes since 1.200: +5 -0 lines
Diff to previous 1.200
*** empty log message ***


Revision 1.200 - (view) (download) (annotate) - [select for diffs]
Tue Nov 13 06:51:55 2001 UTC (23 years, 11 months ago) by pj
Branch: MAIN
Changes since 1.199: +2 -0 lines
Diff to previous 1.199
*** empty log message ***


Revision 1.199 - (view) (download) (annotate) - [select for diffs]
Tue Nov 13 00:05:25 2001 UTC (23 years, 11 months ago) by sds
Branch: MAIN
Changes since 1.198: +48 -48 lines
Diff to previous 1.198
fixed format


Revision 1.198 - (view) (download) (annotate) - [select for diffs]
Mon Nov 12 23:24:32 2001 UTC (23 years, 11 months ago) by pj
Branch: MAIN
Changes since 1.197: +5 -0 lines
Diff to previous 1.197
*** empty log message ***


Revision 1.197 - (view) (download) (annotate) - [select for diffs]
Mon Nov 12 20:02:38 2001 UTC (23 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.196: +5 -0 lines
Diff to previous 1.196
*** empty log message ***


Revision 1.196 - (view) (download) (annotate) - [select for diffs]
Mon Nov 12 08:50:11 2001 UTC (23 years, 11 months ago) by pj
Branch: MAIN
Changes since 1.195: +4 -0 lines
Diff to previous 1.195
*** empty log message ***


Revision 1.195 - (view) (download) (annotate) - [select for diffs]
Sat Nov 10 15:28:40 2001 UTC (23 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.194: +6 -0 lines
Diff to previous 1.194
*** empty log message ***


Revision 1.194 - (view) (download) (annotate) - [select for diffs]
Sat Nov 10 14:45:22 2001 UTC (23 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.193: +8 -0 lines
Diff to previous 1.193
*** empty log message ***


Revision 1.193 - (view) (download) (annotate) - [select for diffs]
Sat Nov 10 14:31:59 2001 UTC (23 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.192: +2 -0 lines
Diff to previous 1.192
*** empty log message ***


Revision 1.192 - (view) (download) (annotate) - [select for diffs]
Sat Nov 10 14:12:59 2001 UTC (23 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.191: +4 -1 lines
Diff to previous 1.191
*** empty log message ***


Revision 1.191 - (view) (download) (annotate) - [select for diffs]
Sat Nov 10 14:03:38 2001 UTC (23 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.190: +4 -0 lines
Diff to previous 1.190
*** empty log message ***


Revision 1.190 - (view) (download) (annotate) - [select for diffs]
Fri Nov 9 16:00:56 2001 UTC (23 years, 11 months ago) by rms
Branch: MAIN
Changes since 1.189: +4 -0 lines
Diff to previous 1.189
*** empty log message ***


Revision 1.169.4.14 - (view) (download) (annotate) - [select for diffs]
Wed Nov 7 18:41:36 2001 UTC (23 years, 11 months ago) by eliz
Branch: EMACS_21_1_RC
Changes since 1.169.4.13: +2 -0 lines
Diff to previous 1.169.4.13 , to branch point 1.169
*** empty log message ***


Revision 1.169.4.13 - (view) (download) (annotate) - [select for diffs]
Wed Nov 7 18:25:20 2001 UTC (23 years, 11 months ago) by eliz
Branch: EMACS_21_1_RC
Changes since 1.169.4.12: +4 -0 lines
Diff to previous 1.169.4.12 , to branch point 1.169
*** empty log message ***


Revision 1.189 - (view) (download) (annotate) - [select for diffs]
Wed Nov 7 18:19:20 2001 UTC (23 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.188: +2 -0 lines
Diff to previous 1.188
*** empty log message ***


Revision 1.188 - (view) (download) (annotate) - [select for diffs]
Wed Nov 7 17:53:46 2001 UTC (23 years, 11 months ago) by eliz
Branch: MAIN
Changes since 1.187: +4 -0 lines
Diff to previous 1.187
*** empty log message ***


Revision 1.187 - (view) (download) (annotate) - [select for diffs]
Tue Nov 6 15:42:05 2001 UTC (23 years, 11 months ago) by sds
Branch: MAIN
Changes since 1.186: +5 -0 lines
Diff to previous 1.186
added a check for nlist.h


Revision 1.169.4.12 - (view) (download) (annotate) - [select for diffs]
Fri Nov 2 08:30:48 2001 UTC (23 years, 11 months ago) by gerd
Branch: EMACS_21_1_RC
Changes since 1.169.4.11: +4 -0 lines
Diff to previous 1.169.4.11 , to branch point 1.169
*** empty log message ***


Revision 1.186 - (view) (download) (annotate) - [select for diffs]
Fri Nov 2 06:53:57 2001 UTC (23 years, 11 months ago) by pj
Branch: MAIN
Changes since 1.185: +4 -0 lines
Diff to previous 1.185
*** empty log message ***


Revision 1.169.4.11 - (view) (download) (annotate) - [select for diffs]
Thu Nov 1 06:29:37 2001 UTC (24 years ago) by pj
Branch: EMACS_21_1_RC
Changes since 1.169.4.10: +5 -0 lines
Diff to previous 1.169.4.10 , to branch point 1.169
*** empty log message ***


Revision 1.185 - (view) (download) (annotate) - [select for diffs]
Thu Nov 1 06:27:20 2001 UTC (24 years ago) by pj
Branch: MAIN
Changes since 1.184: +5 -0 lines
Diff to previous 1.184
*** empty log message ***


Revision 1.169.4.10 - (view) (download) (annotate) - [select for diffs]
Wed Oct 31 17:38:35 2001 UTC (24 years ago) by eliz
Branch: EMACS_21_1_RC
Changes since 1.169.4.9: +2 -0 lines
Diff to previous 1.169.4.9 , to branch point 1.169
*** empty log message ***


Revision 1.184 - (view) (download) (annotate) - [select for diffs]
Wed Oct 31 17:25:08 2001 UTC (24 years ago) by eliz
Branch: MAIN
Changes since 1.183: +1 -3 lines
Diff to previous 1.183
*** empty log message ***


Revision 1.183 - (view) (download) (annotate) - [select for diffs]
Wed Oct 31 17:20:54 2001 UTC (24 years ago) by eliz
Branch: MAIN
Changes since 1.182: +4 -0 lines
Diff to previous 1.182
*** empty log message ***


Revision 1.169.4.9 - (view) (download) (annotate) - [select for diffs]
Wed Oct 31 14:45:58 2001 UTC (24 years ago) by eliz
Branch: EMACS_21_1_RC
Changes since 1.169.4.8: +5 -0 lines
Diff to previous 1.169.4.8 , to branch point 1.169
*** empty log message ***


Revision 1.182 - (view) (download) (annotate) - [select for diffs]
Wed Oct 31 14:43:35 2001 UTC (24 years ago) by eliz
Branch: MAIN
Changes since 1.181: +5 -0 lines
Diff to previous 1.181
*** empty log message ***


Revision 1.181 - (view) (download) (annotate) - [select for diffs]
Sun Oct 28 19:07:24 2001 UTC (24 years ago) by eliz
Branch: MAIN
Changes since 1.180: +5 -0 lines
Diff to previous 1.180
*** empty log message ***


Revision 1.169.4.8 - (view) (download) (annotate) - [select for diffs]
Thu Oct 25 07:14:56 2001 UTC (24 years ago) by gerd
Branch: EMACS_21_1_RC
Changes since 1.169.4.7: +6 -0 lines
Diff to previous 1.169.4.7 , to branch point 1.169
*** empty log message ***


Revision 1.180 - (view) (download) (annotate) - [select for diffs]
Thu Oct 25 07:13:41 2001 UTC (24 years ago) by gerd
Branch: MAIN
Changes since 1.179: +6 -0 lines
Diff to previous 1.179
*** empty log message ***


Revision 1.179 - (view) (download) (annotate) - [select for diffs]
Wed Oct 24 22:54:38 2001 UTC (24 years ago) by raeburn
Branch: MAIN
Changes since 1.178: +7 -0 lines
Diff to previous 1.178
fix build problems with krb5 and hesiod support


Revision 1.169.4.7 - (view) (download) (annotate) - [select for diffs]
Wed Oct 24 11:40:29 2001 UTC (24 years ago) by gerd
Branch: EMACS_21_1_RC
Changes since 1.169.4.6: +4 -0 lines
Diff to previous 1.169.4.6 , to branch point 1.169
*** empty log message ***


Revision 1.178 - (view) (download) (annotate) - [select for diffs]
Wed Oct 24 11:38:57 2001 UTC (24 years ago) by gerd
Branch: MAIN
Changes since 1.177: +4 -0 lines
Diff to previous 1.177
*** empty log message ***


Revision 1.169.4.6 - (view) (download) (annotate) - [select for diffs]
Mon Oct 22 17:39:06 2001 UTC (24 years ago) by gerd
Branch: EMACS_21_1_RC
Changes since 1.169.4.5: +5 -0 lines
Diff to previous 1.169.4.5 , to branch point 1.169
*** empty log message ***


Revision 1.177 - (view) (download) (annotate) - [select for diffs]
Mon Oct 22 17:38:17 2001 UTC (24 years ago) by gerd
Branch: MAIN
Changes since 1.176: +5 -0 lines
Diff to previous 1.176
*** empty log message ***


Revision 1.176 - (view) (download) (annotate) - [select for diffs]
Sun Oct 21 17:34:56 2001 UTC (24 years ago) by gerd
Branch: MAIN
Changes since 1.175: +1 -1 lines
Diff to previous 1.175
*** empty log message ***


Revision 1.175 - (view) (download) (annotate) - [select for diffs]
Sun Oct 21 08:57:48 2001 UTC (24 years ago) by gerd
Branch: MAIN
Changes since 1.174: +4 -0 lines
Diff to previous 1.174
*** empty log message ***


Revision 1.169.4.5 - (view) (download) (annotate) - [select for diffs]
Sat Oct 20 16:16:17 2001 UTC (24 years ago) by gerd
Branch: EMACS_21_1_RC
CVS Tags: EMACS_21_1
Changes since 1.169.4.4: +4 -0 lines
Diff to previous 1.169.4.4 , to branch point 1.169
*** empty log message ***


Revision 1.169.4.4 - (view) (download) (annotate) - [select for diffs]
Fri Oct 19 16:53:17 2001 UTC (24 years ago) by eliz
Branch: EMACS_21_1_RC
Changes since 1.169.4.3: +6 -0 lines
Diff to previous 1.169.4.3 , to branch point 1.169
*** empty log message ***


Revision 1.174 - (view) (download) (annotate) - [select for diffs]
Fri Oct 19 15:27:05 2001 UTC (24 years ago) by miles
Branch: MAIN
Changes since 1.173: +5 -0 lines
Diff to previous 1.173
*** empty log message ***


Revision 1.169.4.3 - (view) (download) (annotate) - [select for diffs]
Fri Oct 19 14:10:48 2001 UTC (24 years ago) by gerd
Branch: EMACS_21_1_RC
Changes since 1.169.4.2: +5 -0 lines
Diff to previous 1.169.4.2 , to branch point 1.169
*** empty log message ***


Revision 1.173 - (view) (download) (annotate) - [select for diffs]
Fri Oct 19 12:33:44 2001 UTC (24 years ago) by schwab
Branch: MAIN
Changes since 1.172: +8 -0 lines
Diff to previous 1.172
*** empty log message ***


Revision 1.169.4.2 - (view) (download) (annotate) - [select for diffs]
Fri Oct 19 00:31:27 2001 UTC (24 years ago) by raeburn
Branch: EMACS_21_1_RC
Changes since 1.169.4.1: +7 -0 lines
Diff to previous 1.169.4.1 , to branch point 1.169
fix up hesiod and kerberos configuration problems


Revision 1.163.2.1 - (view) (download) (annotate) - [select for diffs]
Tue Oct 16 10:25:35 2001 UTC (24 years ago) by gerd
Branch: gerd_big
Changes since 1.163: +4 -0 lines
Diff to previous 1.163 , to next main 1.876
*** empty log message ***


Revision 1.172 - (view) (download) (annotate) - [select for diffs]
Sat Oct 13 10:45:31 2001 UTC (24 years ago) by eliz
Branch: MAIN
Changes since 1.171: +4 -0 lines
Diff to previous 1.171
*** empty log message ***


Revision 1.171 - (view) (download) (annotate) - [select for diffs]
Wed Oct 10 09:33:38 2001 UTC (24 years ago) by gerd
Branch: MAIN
Changes since 1.170: +4 -0 lines
Diff to previous 1.170
*** empty log message ***


Revision 1.169.4.1 - (view) (download) (annotate) - [select for diffs]
Sat Oct 6 10:29:54 2001 UTC (24 years ago) by gerd
Branch: EMACS_21_1_RC
Changes since 1.169: +5 -0 lines
Diff to previous 1.169
*** empty log message ***


Revision 1.170 - (view) (download) (annotate) - [select for diffs]
Sat Oct 6 09:49:14 2001 UTC (24 years ago) by gerd
Branch: MAIN
Changes since 1.169: +5 -0 lines
Diff to previous 1.169
*** empty log message ***


Revision 1.169 - (view) (download) (annotate) - [select for diffs]
Sat Sep 22 09:21:39 2001 UTC (24 years, 1 month ago) by eliz
Branch: MAIN
CVS Tags: EMACS_21_1_BASE, EMACS_PRETEST_21_0_106, patches_21_0_base
Branch point for: EMACS_21_1_RC, patches_21_0
Changes since 1.168: +0 -13 lines
Diff to previous 1.168
Remove entries which don't belong here.


Revision 1.168 - (view) (download) (annotate) - [select for diffs]
Thu Sep 13 09:12:17 2001 UTC (24 years, 1 month ago) by gerd
Branch: MAIN
Changes since 1.167: +7 -0 lines
Diff to previous 1.167
*** empty log message ***


Revision 1.167 - (view) (download) (annotate) - [select for diffs]
Wed Sep 5 14:46:26 2001 UTC (24 years, 1 month ago) by gerd
Branch: MAIN
Changes since 1.166: +5 -0 lines
Diff to previous 1.166
*** empty log message ***


Revision 1.166 - (view) (download) (annotate) - [select for diffs]
Tue Sep 4 13:12:55 2001 UTC (24 years, 1 month ago) by andrewi
Branch: MAIN
Changes since 1.165: +6 -0 lines
Diff to previous 1.165
*** empty log message ***


Revision 1.165 - (view) (download) (annotate) - [select for diffs]
Sat Sep 1 06:58:54 2001 UTC (24 years, 2 months ago) by eliz
Branch: MAIN
Changes since 1.164: +4 -0 lines
Diff to previous 1.164
*** empty log message ***


Revision 1.164 - (view) (download) (annotate) - [select for diffs]
Tue Aug 14 11:57:08 2001 UTC (24 years, 2 months ago) by eliz
Branch: MAIN
CVS Tags: EMACS_PRETEST_21_0_105
Changes since 1.163: +5 -0 lines
Diff to previous 1.163
*** empty log message ***


Revision 1.163 - (view) (download) (annotate) - [select for diffs]
Mon May 28 14:59:48 2001 UTC (24 years, 5 months ago) by gerd
Branch: MAIN
CVS Tags: EMACS_PRETEST_21_0_104
Branch point for: gerd_big
Changes since 1.162: +5 -0 lines
Diff to previous 1.162
*** empty log message ***


Revision 1.162.4.1 - (view) (download) (annotate) - [select for diffs]
Mon May 21 15:20:43 2001 UTC (24 years, 5 months ago) by gerd
Branch: gerd_dbe
Changes since 1.162: +5 -0 lines
Diff to previous 1.162 , to next main 1.876
*** empty log message ***


Revision 1.162 - (view) (download) (annotate) - [select for diffs]
Mon May 14 16:57:37 2001 UTC (24 years, 5 months ago) by gerd
Branch: MAIN
Branch point for: gerd_dbe, gerd_defvaralias, gerd_int
Changes since 1.161: +4 -0 lines
Diff to previous 1.161
*** empty log message ***


Revision 1.161 - (view) (download) (annotate) - [select for diffs]
Fri May 11 08:59:51 2001 UTC (24 years, 5 months ago) by eliz
Branch: MAIN
Changes since 1.160: +0 -4 lines
Diff to previous 1.160
Remove the entry for 19.34 release.  RMS says it was made on a branch.


Revision 1.160 - (view) (download) (annotate) - [select for diffs]
Wed May 9 09:47:35 2001 UTC (24 years, 5 months ago) by gerd
Branch: MAIN
Changes since 1.159: +0 -46 lines
Diff to previous 1.159
Remove log entries for 20.5 .. 20.7.


Revision 1.159 - (view) (download) (annotate) - [select for diffs]
Fri May 4 17:50:11 2001 UTC (24 years, 5 months ago) by eliz
Branch: MAIN
CVS Tags: EMACS_PRETEST_21_0_103
Changes since 1.158: +4 -0 lines
Diff to previous 1.158
*** empty log message ***


Revision 1.158 - (view) (download) (annotate) - [select for diffs]
Wed Apr 25 13:51:02 2001 UTC (24 years, 6 months ago) by eliz
Branch: MAIN
Changes since 1.157: +5 -0 lines
Diff to previous 1.157
*** empty log message ***


Revision 1.157 - (view) (download) (annotate) - [select for diffs]
Fri Apr 6 12:27:22 2001 UTC (24 years, 6 months ago) by gerd
Branch: MAIN
CVS Tags: EMACS_PRETEST_21_0_102
Changes since 1.156: +3 -0 lines
Diff to previous 1.156
*** empty log message ***


Revision 1.156 - (view) (download) (annotate) - [select for diffs]
Fri Apr 6 10:08:23 2001 UTC (24 years, 6 months ago) by gerd
Branch: MAIN
Changes since 1.155: +5 -0 lines
Diff to previous 1.155
*** empty log message ***


Revision 1.155 - (view) (download) (annotate) - [select for diffs]
Thu Apr 5 13:52:26 2001 UTC (24 years, 6 months ago) by gerd
Branch: MAIN
Changes since 1.154: +4 -0 lines
Diff to previous 1.154
*** empty log message ***


Revision 1.154 - (view) (download) (annotate) - [select for diffs]
Fri Mar 30 15:58:44 2001 UTC (24 years, 7 months ago) by gerd
Branch: MAIN
CVS Tags: EMACS_PRETEST_21_0_101
Changes since 1.153: +6 -0 lines
Diff to previous 1.153
*** empty log message ***


Revision 1.153 - (view) (download) (annotate) - [select for diffs]
Thu Mar 29 14:25:03 2001 UTC (24 years, 7 months ago) by gerd
Branch: MAIN
Changes since 1.152: +7 -0 lines
Diff to previous 1.152
*** empty log message ***


Revision 1.152 - (view) (download) (annotate) - [select for diffs]
Tue Mar 20 15:47:31 2001 UTC (24 years, 7 months ago) by gerd
Branch: MAIN
Changes since 1.151: +5 -0 lines
Diff to previous 1.151
*** empty log message ***


Revision 1.151 - (view) (download) (annotate) - [select for diffs]
Mon Mar 5 09:52:16 2001 UTC (24 years, 7 months ago) by gerd
Branch: MAIN
CVS Tags: EMACS_PRETEST_21_0_100, EMACS_PRETEST_21_0_99
Changes since 1.150: +4 -0 lines
Diff to previous 1.150
*** empty log message ***


Revision 1.150 - (view) (download) (annotate) - [select for diffs]
Sun Mar 4 07:08:44 2001 UTC (24 years, 7 months ago) by eliz
Branch: MAIN
Changes since 1.149: +4 -0 lines
Diff to previous 1.149
*** empty log message ***


Revision 1.149 - (view) (download) (annotate) - [select for diffs]
Fri Mar 2 18:40:01 2001 UTC (24 years, 8 months ago) by eliz
Branch: MAIN
Changes since 1.148: +1 -1 lines
Diff to previous 1.148
*** empty log message ***


Revision 1.148 - (view) (download) (annotate) - [select for diffs]
Fri Feb 23 13:31:58 2001 UTC (24 years, 8 months ago) by gerd
Branch: MAIN
Changes since 1.147: +6 -0 lines
Diff to previous 1.147
*** empty log message ***


Revision 1.147 - (view) (download) (annotate) - [select for diffs]
Fri Feb 9 16:19:53 2001 UTC (24 years, 8 months ago) by fx
Branch: MAIN
CVS Tags: EMACS_PRETEST_21_0_98
Changes since 1.146: +4 -0 lines
Diff to previous 1.146
*** empty log message ***


Revision 1.146 - (view) (download) (annotate) - [select for diffs]
Tue Feb 6 17:21:31 2001 UTC (24 years, 8 months ago) by eliz
Branch: MAIN
Changes since 1.145: +4 -0 lines
Diff to previous 1.145
*** empty log message ***


Revision 1.145 - (view) (download) (annotate) - [select for diffs]
Fri Feb 2 13:09:47 2001 UTC (24 years, 8 months ago) by gerd
Branch: MAIN
Branch point for: fx-branch
Changes since 1.144: +2 -0 lines
Diff to previous 1.144
*** empty log message ***


Revision 1.144 - (view) (download) (annotate) - [select for diffs]
Fri Feb 2 13:04:00 2001 UTC (24 years, 8 months ago) by gerd
Branch: MAIN
Changes since 1.143: +2 -0 lines
Diff to previous 1.143
*** empty log message ***


Revision 1.143 - (view) (download) (annotate) - [select for diffs]
Fri Feb 2 12:32:16 2001 UTC (24 years, 8 months ago) by gerd
Branch: MAIN
Changes since 1.142: +5 -0 lines
Diff to previous 1.142
*** empty log message ***


Revision 1.142 - (view) (download) (annotate) - [select for diffs]
Wed Jan 31 13:22:34 2001 UTC (24 years, 9 months ago) by gerd
Branch: MAIN
Changes since 1.141: +4 -0 lines
Diff to previous 1.141
*** empty log message ***


Revision 1.141 - (view) (download) (annotate) - [select for diffs]
Wed Jan 31 13:20:23 2001 UTC (24 years, 9 months ago) by gerd
Branch: MAIN
Changes since 1.140: +1 -1 lines
Diff to previous 1.140
*** empty log message ***


Revision 1.140 - (view) (download) (annotate) - [select for diffs]
Sun Jan 28 23:37:16 2001 UTC (24 years, 9 months ago) by wohler
Branch: MAIN
Changes since 1.139: +5 -0 lines
Diff to previous 1.139
*** empty log message ***


Revision 1.139 - (view) (download) (annotate) - [select for diffs]
Thu Jan 25 11:43:12 2001 UTC (24 years, 9 months ago) by gerd
Branch: MAIN
Changes since 1.138: +4 -0 lines
Diff to previous 1.138
*** empty log message ***


Revision 1.138 - (view) (download) (annotate) - [select for diffs]
Sat Jan 13 07:08:22 2001 UTC (24 years, 9 months ago) by handa
Branch: MAIN
Changes since 1.137: +4 -0 lines
Diff to previous 1.137
*** empty log message ***


Revision 1.137 - (view) (download) (annotate) - [select for diffs]
Wed Jan 10 15:19:09 2001 UTC (24 years, 9 months ago) by gerd
Branch: MAIN
Changes since 1.136: +10 -0 lines
Diff to previous 1.136
*** empty log message ***


Revision 1.136 - (view) (download) (annotate) - [select for diffs]
Mon Jan 8 17:24:44 2001 UTC (24 years, 9 months ago) by eliz
Branch: MAIN
CVS Tags: EMACS_PRETEST_21_0_95
Changes since 1.135: +4 -0 lines
Diff to previous 1.135
*** empty log message ***


Revision 1.135 - (view) (download) (annotate) - [select for diffs]
Sat Jan 6 18:49:25 2001 UTC (24 years, 9 months ago) by eliz
Branch: MAIN
Changes since 1.134: +1 -1 lines
Diff to previous 1.134
Fix a typo.


Revision 1.134 - (view) (download) (annotate) - [select for diffs]
Mon Jan 1 17:57:10 2001 UTC (24 years, 9 months ago) by eliz
Branch: MAIN
Changes since 1.133: +4 -0 lines
Diff to previous 1.133
*** empty log message ***


Revision 1.133 - (view) (download) (annotate) - [select for diffs]
Wed Dec 27 16:16:56 2000 UTC (24 years, 10 months ago) by eliz
Branch: MAIN
Changes since 1.132: +8 -0 lines
Diff to previous 1.132
*** empty log message ***


Revision 1.132 - (view) (download) (annotate) - [select for diffs]
Wed Dec 27 11:49:03 2000 UTC (24 years, 10 months ago) by gerd
Branch: MAIN
Changes since 1.131: +5 -0 lines
Diff to previous 1.131
*** empty log message ***


Revision 1.131 - (view) (download) (annotate) - [select for diffs]
Tue Dec 19 11:27:02 2000 UTC (24 years, 10 months ago) by gerd
Branch: MAIN
Changes since 1.130: +7 -0 lines
Diff to previous 1.130
*** empty log message ***


Revision 1.130 - (view) (download) (annotate) - [select for diffs]
Thu Dec 14 12:02:24 2000 UTC (24 years, 10 months ago) by gerd
Branch: MAIN
Changes since 1.129: +4 -0 lines
Diff to previous 1.129
*** empty log message ***


Revision 1.129 - (view) (download) (annotate) - [select for diffs]
Mon Dec 11 17:17:12 2000 UTC (24 years, 10 months ago) by fx
Branch: MAIN
CVS Tags: EMACS_PRETEST_21_0_93
Changes since 1.128: +4 -0 lines
Diff to previous 1.128
*** empty log message ***


Revision 1.128 - (view) (download) (annotate) - [select for diffs]
Mon Dec 11 11:54:57 2000 UTC (24 years, 10 months ago) by gerd
Branch: MAIN
Changes since 1.127: +11 -1 lines
Diff to previous 1.127
*** empty log message ***


Revision 1.127 - (view) (download) (annotate) - [select for diffs]
Tue Dec 5 17:02:50 2000 UTC (24 years, 10 months ago) by fx
Branch: MAIN
Changes since 1.126: +4 -0 lines
Diff to previous 1.126
*** empty log message ***


Revision 1.126 - (view) (download) (annotate) - [select for diffs]
Sat Dec 2 15:39:58 2000 UTC (24 years, 10 months ago) by eliz
Branch: MAIN
Changes since 1.125: +4 -0 lines
Diff to previous 1.125
*** empty log message ***


Revision 1.125 - (view) (download) (annotate) - [select for diffs]
Fri Dec 1 10:24:23 2000 UTC (24 years, 11 months ago) by gerd
Branch: MAIN
Changes since 1.124: +5 -0 lines
Diff to previous 1.124
*** empty log message ***


Revision 1.124 - (view) (download) (annotate) - [select for diffs]
Thu Nov 23 15:43:14 2000 UTC (24 years, 11 months ago) by eliz
Branch: MAIN
CVS Tags: EMACS_PRETEST_21_0_92
Changes since 1.123: +8 -0 lines
Diff to previous 1.123
*** empty log message ***


Revision 1.123 - (view) (download) (annotate) - [select for diffs]
Thu Nov 23 12:36:52 2000 UTC (24 years, 11 months ago) by gerd
Branch: MAIN
Changes since 1.122: +4 -0 lines
Diff to previous 1.122
*** empty log message ***


Revision 1.122 - (view) (download) (annotate) - [select for diffs]
Wed Nov 22 12:49:56 2000 UTC (24 years, 11 months ago) by gerd
Branch: MAIN
Changes since 1.121: +5 -0 lines
Diff to previous 1.121
*** empty log message ***


Revision 1.121 - (view) (download) (annotate) - [select for diffs]
Tue Nov 21 16:21:09 2000 UTC (24 years, 11 months ago) by gerd
Branch: MAIN
Changes since 1.120: +3 -0 lines
Diff to previous 1.120
*** empty log message ***


Revision 1.120 - (view) (download) (annotate) - [select for diffs]
Tue Nov 21 12:24:00 2000 UTC (24 years, 11 months ago) by gerd
Branch: MAIN
Changes since 1.119: +3 -0 lines
Diff to previous 1.119
*** empty log message ***


Revision 1.119 - (view) (download) (annotate) - [select for diffs]
Tue Nov 21 10:41:56 2000 UTC (24 years, 11 months ago) by gerd
Branch: MAIN
Changes since 1.118: +5 -0 lines
Diff to previous 1.118
*** empty log message ***


Revision 1.118 - (view) (download) (annotate) - [select for diffs]
Mon Nov 20 19:17:00 2000 UTC (24 years, 11 months ago) by fx
Branch: MAIN
Changes since 1.117: +2 -0 lines
Diff to previous 1.117
*** empty log message ***


Revision 1.117 - (view) (download) (annotate) - [select for diffs]
Mon Nov 20 18:39:16 2000 UTC (24 years, 11 months ago) by fx
Branch: MAIN
Changes since 1.116: +6 -0 lines
Diff to previous 1.116
*** empty log message ***


Revision 1.116 - (view) (download) (annotate) - [select for diffs]
Mon Nov 20 14:07:18 2000 UTC (24 years, 11 months ago) by gerd
Branch: MAIN
Changes since 1.115: +4 -0 lines
Diff to previous 1.115
*** empty log message ***


Revision 1.115 - (view) (download) (annotate) - [select for diffs]
Fri Nov 17 16:28:14 2000 UTC (24 years, 11 months ago) by gerd
Branch: MAIN
CVS Tags: EMACS_PRETEST_21_0_90, EMACS_PRETEST_21_0_91
Changes since 1.114: +7 -0 lines
Diff to previous 1.114
*** empty log message ***


Revision 1.114 - (view) (download) (annotate) - [select for diffs]
Sun Nov 12 00:27:05 2000 UTC (24 years, 11 months ago) by fx
Branch: MAIN
Changes since 1.113: +4 -0 lines
Diff to previous 1.113
*** empty log message ***


Revision 1.113 - (view) (download) (annotate) - [select for diffs]
Tue Nov 7 18:10:46 2000 UTC (24 years, 11 months ago) by fx
Branch: MAIN
Changes since 1.112: +4 -0 lines
Diff to previous 1.112
*** empty log message ***


Revision 1.112 - (view) (download) (annotate) - [select for diffs]
Wed Nov 1 11:36:56 2000 UTC (25 years ago) by eliz
Branch: MAIN
Changes since 1.111: +6 -0 lines
Diff to previous 1.111
*** empty log message ***


Revision 1.111 - (view) (download) (annotate) - [select for diffs]
Sun Oct 29 18:31:43 2000 UTC (25 years ago) by eliz
Branch: MAIN
Changes since 1.110: +3 -3 lines
Diff to previous 1.110
*** empty log message ***


Revision 1.110 - (view) (download) (annotate) - [select for diffs]
Sun Oct 29 18:27:47 2000 UTC (25 years ago) by eliz
Branch: MAIN
Changes since 1.109: +3 -2 lines
Diff to previous 1.109
*** empty log message ***


Revision 1.109 - (view) (download) (annotate) - [select for diffs]
Sun Oct 29 17:36:48 2000 UTC (25 years ago) by kai
Branch: MAIN
Changes since 1.108: +5 -0 lines
Diff to previous 1.108
install-info syntax compat change.


Revision 1.108 - (view) (download) (annotate) - [select for diffs]
Fri Oct 20 02:15:13 2000 UTC (25 years ago) by zappo
Branch: MAIN
Changes since 1.107: +4 -0 lines
Diff to previous 1.107
*** empty log message ***


Revision 1.107 - (view) (download) (annotate) - [select for diffs]
Mon Oct 16 21:24:15 2000 UTC (25 years ago) by eliz
Branch: MAIN
Changes since 1.106: +5 -0 lines
Diff to previous 1.106
*** empty log message ***


Revision 1.106 - (view) (download) (annotate) - [select for diffs]
Sat Oct 14 20:11:02 2000 UTC (25 years ago) by eliz
Branch: MAIN
Changes since 1.105: +4 -0 lines
Diff to previous 1.105
*** empty log message ***


Revision 1.105 - (view) (download) (annotate) - [select for diffs]
Mon Oct 2 16:38:19 2000 UTC (25 years ago) by fx
Branch: MAIN
Changes since 1.104: +4 -0 lines
Diff to previous 1.104
*** empty log message ***


Revision 1.104 - (view) (download) (annotate) - [select for diffs]
Sun Oct 1 14:46:50 2000 UTC (25 years, 1 month ago) by schwab
Branch: MAIN
Changes since 1.103: +5 -0 lines
Diff to previous 1.103
.


Revision 1.103 - (view) (download) (annotate) - [select for diffs]
Sat Sep 30 14:35:00 2000 UTC (25 years, 1 month ago) by gerd
Branch: MAIN
Changes since 1.102: +4 -0 lines
Diff to previous 1.102
*** empty log message ***


Revision 1.102 - (view) (download) (annotate) - [select for diffs]
Fri Sep 29 16:20:03 2000 UTC (25 years, 1 month ago) by eliz
Branch: MAIN
Changes since 1.101: +4 -0 lines
Diff to previous 1.101
*** empty log message ***


Revision 1.101 - (view) (download) (annotate) - [select for diffs]
Fri Sep 29 09:32:42 2000 UTC (25 years, 1 month ago) by fx
Branch: MAIN
Changes since 1.100: +4 -0 lines
Diff to previous 1.100
*** empty log message ***


Revision 1.100 - (view) (download) (annotate) - [select for diffs]
Tue Sep 26 19:23:15 2000 UTC (25 years, 1 month ago) by gerd
Branch: MAIN
Changes since 1.99: +9 -0 lines
Diff to previous 1.99
*** empty log message ***


Revision 1.99 - (view) (download) (annotate) - [select for diffs]
Mon Sep 25 15:35:14 2000 UTC (25 years, 1 month ago) by gerd
Branch: MAIN
Changes since 1.98: +46 -0 lines
Diff to previous 1.98
*** empty log message ***


Revision 1.98 - (view) (download) (annotate) - [select for diffs]
Wed Sep 20 16:14:26 2000 UTC (25 years, 1 month ago) by handa
Branch: MAIN
Changes since 1.97: +10 -0 lines
Diff to previous 1.97
*** empty log message ***


Revision 1.97 - (view) (download) (annotate) - [select for diffs]
Tue Sep 19 16:18:31 2000 UTC (25 years, 1 month ago) by gerd
Branch: MAIN
Changes since 1.96: +5 -0 lines
Diff to previous 1.96
*** empty log message ***


Revision 1.96 - (view) (download) (annotate) - [select for diffs]
Mon Sep 18 13:40:30 2000 UTC (25 years, 1 month ago) by gerd
Branch: MAIN
Changes since 1.95: +5 -0 lines
Diff to previous 1.95
*** empty log message ***


Revision 1.95 - (view) (download) (annotate) - [select for diffs]
Thu Sep 14 19:01:13 2000 UTC (25 years, 1 month ago) by fx
Branch: MAIN
Changes since 1.94: +4 -0 lines
Diff to previous 1.94
*** empty log message ***


Revision 1.94 - (view) (download) (annotate) - [select for diffs]
Thu Sep 14 15:12:12 2000 UTC (25 years, 1 month ago) by gerd
Branch: MAIN
Changes since 1.93: +6 -0 lines
Diff to previous 1.93
*** empty log message ***


Revision 1.93 - (view) (download) (annotate) - [select for diffs]
Fri Sep 8 21:50:30 2000 UTC (25 years, 1 month ago) by fx
Branch: MAIN
Changes since 1.92: +7 -0 lines
Diff to previous 1.92
*** empty log message ***


Revision 1.92 - (view) (download) (annotate) - [select for diffs]
Wed Sep 6 21:24:26 2000 UTC (25 years, 1 month ago) by gerd
Branch: MAIN
Changes since 1.91: +3 -0 lines
Diff to previous 1.91
*** empty log message ***


Revision 1.91 - (view) (download) (annotate) - [select for diffs]
Wed Sep 6 12:21:01 2000 UTC (25 years, 1 month ago) by gerd
Branch: MAIN
Changes since 1.90: +4 -0 lines
Diff to previous 1.90
*** empty log message ***


Revision 1.90 - (view) (download) (annotate) - [select for diffs]
Fri Sep 1 14:05:27 2000 UTC (25 years, 2 months ago) by gerd
Branch: MAIN
Changes since 1.89: +5 -0 lines
Diff to previous 1.89
*** empty log message ***


Revision 1.89 - (view) (download) (annotate) - [select for diffs]
Tue Aug 29 09:35:04 2000 UTC (25 years, 2 months ago) by fx
Branch: MAIN
Changes since 1.88: +4 -0 lines
Diff to previous 1.88
*** empty log message ***


Revision 1.88 - (view) (download) (annotate) - [select for diffs]
Mon Aug 28 15:01:33 2000 UTC (25 years, 2 months ago) by gerd
Branch: MAIN
Changes since 1.87: +5 -0 lines
Diff to previous 1.87
*** empty log message ***


Revision 1.87 - (view) (download) (annotate) - [select for diffs]
Sat Aug 26 06:10:30 2000 UTC (25 years, 2 months ago) by eliz
Branch: MAIN
Changes since 1.86: +1 -1 lines
Diff to previous 1.86
It was "skk" that was renamed, not "skkdic".


Revision 1.86 - (view) (download) (annotate) - [select for diffs]
Sat Aug 26 00:36:29 2000 UTC (25 years, 2 months ago) by handa
Branch: MAIN
Changes since 1.85: +5 -0 lines
Diff to previous 1.85
*** empty log message ***


Revision 1.85 - (view) (download) (annotate) - [select for diffs]
Fri Aug 25 01:37:42 2000 UTC (25 years, 2 months ago) by handa
Branch: MAIN
Changes since 1.84: +1 -1 lines
Diff to previous 1.84
*** empty log message ***


Revision 1.84 - (view) (download) (annotate) - [select for diffs]
Fri Aug 25 01:37:20 2000 UTC (25 years, 2 months ago) by handa
Branch: MAIN
Changes since 1.83: +4 -0 lines
Diff to previous 1.83
*** empty log message ***


Revision 1.83 - (view) (download) (annotate) - [select for diffs]
Thu Aug 24 11:42:06 2000 UTC (25 years, 2 months ago) by gerd
Branch: MAIN
Changes since 1.82: +6 -0 lines
Diff to previous 1.82
*** empty log message ***


Revision 1.82 - (view) (download) (annotate) - [select for diffs]
Mon Aug 21 01:19:14 2000 UTC (25 years, 2 months ago) by handa
Branch: MAIN
Changes since 1.81: +4 -0 lines
Diff to previous 1.81
*** empty log message ***


Revision 1.81 - (view) (download) (annotate) - [select for diffs]
Tue Aug 8 10:45:56 2000 UTC (25 years, 2 months ago) by eliz
Branch: MAIN
Changes since 1.80: +2 -0 lines
Diff to previous 1.80
*** empty log message ***


Revision 1.80 - (view) (download) (annotate) - [select for diffs]
Tue Aug 8 10:36:51 2000 UTC (25 years, 2 months ago) by eliz
Branch: MAIN
Changes since 1.79: +5 -0 lines
Diff to previous 1.79
*** empty log message ***


Revision 1.79 - (view) (download) (annotate) - [select for diffs]
Mon Aug 7 13:12:43 2000 UTC (25 years, 2 months ago) by gerd
Branch: MAIN
Changes since 1.78: +5 -0 lines
Diff to previous 1.78
*** empty log message ***


Revision 1.78 - (view) (download) (annotate) - [select for diffs]
Thu Aug 3 20:09:17 2000 UTC (25 years, 2 months ago) by gerd
Branch: MAIN
Changes since 1.77: +4 -0 lines
Diff to previous 1.77
*** empty log message ***


Revision 1.77 - (view) (download) (annotate) - [select for diffs]
Thu Jul 27 20:05:32 2000 UTC (25 years, 3 months ago) by gerd
Branch: MAIN
Changes since 1.76: +4 -0 lines
Diff to previous 1.76
*** empty log message ***


Revision 1.76 - (view) (download) (annotate) - [select for diffs]
Wed Jul 26 10:56:39 2000 UTC (25 years, 3 months ago) by fx
Branch: MAIN
Changes since 1.75: +4 -0 lines
Diff to previous 1.75
*** empty log message ***


Revision 1.75 - (view) (download) (annotate) - [select for diffs]
Mon Jul 24 18:37:36 2000 UTC (25 years, 3 months ago) by fx
Branch: MAIN
Changes since 1.74: +4 -0 lines
Diff to previous 1.74
*** empty log message ***


Revision 1.74 - (view) (download) (annotate) - [select for diffs]
Tue Jul 18 22:04:47 2000 UTC (25 years, 3 months ago) by fx
Branch: MAIN
Changes since 1.73: +5 -0 lines
Diff to previous 1.73
*** empty log message ***


Revision 1.73 - (view) (download) (annotate) - [select for diffs]
Mon Jul 10 20:38:23 2000 UTC (25 years, 3 months ago) by gerd
Branch: MAIN
Changes since 1.72: +5 -0 lines
Diff to previous 1.72
*** empty log message ***


Revision 1.72 - (view) (download) (annotate) - [select for diffs]
Thu Jul 6 15:11:56 2000 UTC (25 years, 3 months ago) by gerd
Branch: MAIN
Changes since 1.71: +5 -0 lines
Diff to previous 1.71
*** empty log message ***


Revision 1.71 - (view) (download) (annotate) - [select for diffs]
Wed Jul 5 19:18:49 2000 UTC (25 years, 3 months ago) by raeburn
Branch: MAIN
Changes since 1.70: +5 -0 lines
Diff to previous 1.70
* configure.in: Check for <soundcard.h>.  Look for ossaudio library, and set
LIBSOUND accordingly.


Revision 1.70 - (view) (download) (annotate) - [select for diffs]
Wed Jul 5 16:56:36 2000 UTC (25 years, 3 months ago) by fx
Branch: MAIN
Changes since 1.69: +4 -0 lines
Diff to previous 1.69
*** empty log message ***


Revision 1.69 - (view) (download) (annotate) - [select for diffs]
Wed Jul 5 12:39:34 2000 UTC (25 years, 3 months ago) by gerd
Branch: MAIN
Changes since 1.68: +6 -0 lines
Diff to previous 1.68
*** empty log message ***


Revision 1.68 - (view) (download) (annotate) - [select for diffs]
Fri Jun 30 22:02:21 2000 UTC (25 years, 4 months ago) by raeburn
Branch: MAIN
Changes since 1.67: +5 -0 lines
Diff to previous 1.67
* configure.in: Add ${C_SWITCH_X_SITE} temporarily to CPPFLAGS, while
searching for image-handling libraries.


Revision 1.67 - (view) (download) (annotate) - [select for diffs]
Mon Jun 26 15:38:44 2000 UTC (25 years, 4 months ago) by gerd
Branch: MAIN
Changes since 1.66: +4 -0 lines
Diff to previous 1.66
*** empty log message ***


Revision 1.66 - (view) (download) (annotate) - [select for diffs]
Fri Jun 23 15:43:44 2000 UTC (25 years, 4 months ago) by fx
Branch: MAIN
Changes since 1.65: +1 -1 lines
Diff to previous 1.65
*** empty log message ***


Revision 1.65 - (view) (download) (annotate) - [select for diffs]
Fri Jun 23 15:39:33 2000 UTC (25 years, 4 months ago) by fx
Branch: MAIN
Changes since 1.64: +1 -0 lines
Diff to previous 1.64
*** empty log message ***


Revision 1.64 - (view) (download) (annotate) - [select for diffs]
Fri Jun 23 15:36:46 2000 UTC (25 years, 4 months ago) by fx
Branch: MAIN
Changes since 1.63: +8 -0 lines
Diff to previous 1.63
*** empty log message ***


Revision 1.63 - (view) (download) (annotate) - [select for diffs]
Thu Jun 22 22:05:18 2000 UTC (25 years, 4 months ago) by gerd
Branch: MAIN
Changes since 1.62: +4 -0 lines
Diff to previous 1.62
*** empty log message ***


Revision 1.62 - (view) (download) (annotate) - [select for diffs]
Wed Jun 21 14:10:43 2000 UTC (25 years, 4 months ago) by fx
Branch: MAIN
Changes since 1.61: +6 -0 lines
Diff to previous 1.61
*** empty log message ***


Revision 1.61 - (view) (download) (annotate) - [select for diffs]
Mon Jun 19 10:59:57 2000 UTC (25 years, 4 months ago) by fx
Branch: MAIN
Changes since 1.60: +5 -0 lines
Diff to previous 1.60
*** empty log message ***


Revision 1.60 - (view) (download) (annotate) - [select for diffs]
Fri Jun 16 18:54:24 2000 UTC (25 years, 4 months ago) by gerd
Branch: MAIN
Changes since 1.59: +4 -0 lines
Diff to previous 1.59
*** empty log message ***


Revision 1.59 - (view) (download) (annotate) - [select for diffs]
Thu Jun 15 16:03:42 2000 UTC (25 years, 4 months ago) by eliz
Branch: MAIN
Changes since 1.58: +4 -0 lines
Diff to previous 1.58
*** empty log message ***


Revision 1.58 - (view) (download) (annotate) - [select for diffs]
Thu Jun 15 12:47:51 2000 UTC (25 years, 4 months ago) by gerd
Branch: MAIN
Changes since 1.57: +4 -0 lines
Diff to previous 1.57
*** empty log message ***


Revision 1.57 - (view) (download) (annotate) - [select for diffs]
Wed Jun 14 20:23:39 2000 UTC (25 years, 4 months ago) by gerd
Branch: MAIN
Changes since 1.56: +2 -0 lines
Diff to previous 1.56
*** empty log message ***


Revision 1.56 - (view) (download) (annotate) - [select for diffs]
Wed Jun 14 13:37:19 2000 UTC (25 years, 4 months ago) by gerd
Branch: MAIN
Changes since 1.55: +7 -0 lines
Diff to previous 1.55
*** empty log message ***


Revision 1.55 - (view) (download) (annotate) - [select for diffs]
Tue Jun 13 16:25:11 2000 UTC (25 years, 4 months ago) by raeburn
Branch: MAIN
Changes since 1.54: +5 -0 lines
Diff to previous 1.54
* Makefile.in (install-arch-indep): Don't use "-unset CDPATH" when it's on a
continuation line.


Revision 1.54 - (view) (download) (annotate) - [select for diffs]
Fri Jun 2 20:07:12 2000 UTC (25 years, 4 months ago) by fx
Branch: MAIN
Changes since 1.53: +3 -0 lines
Diff to previous 1.53
*** empty log message ***


Revision 1.53 - (view) (download) (annotate) - [select for diffs]
Fri Jun 2 15:46:19 2000 UTC (25 years, 4 months ago) by fx
Branch: MAIN
Changes since 1.52: +9 -0 lines
Diff to previous 1.52
*** empty log message ***


Revision 1.52 - (view) (download) (annotate) - [select for diffs]
Fri May 26 15:56:42 2000 UTC (25 years, 5 months ago) by gerd
Branch: MAIN
Changes since 1.51: +4 -0 lines
Diff to previous 1.51
*** empty log message ***


Revision 1.51 - (view) (download) (annotate) - [select for diffs]
Thu May 25 21:06:28 2000 UTC (25 years, 5 months ago) by gerd
Branch: MAIN
Changes since 1.50: +1 -0 lines
Diff to previous 1.50
*** empty log message ***


Revision 1.50 - (view) (download) (annotate) - [select for diffs]
Thu May 25 16:40:11 2000 UTC (25 years, 5 months ago) by raeburn
Branch: MAIN
Changes since 1.49: +5 -0 lines
Diff to previous 1.49
* Makefile.in (install-arch-dep): Install fns-*.el only if it
exists; it won't in the CANNOT_DUMP case.


Revision 1.49 - (view) (download) (annotate) - [select for diffs]
Thu May 25 10:38:04 2000 UTC (25 years, 5 months ago) by gerd
Branch: MAIN
Changes since 1.48: +2 -2 lines
Diff to previous 1.48
*** empty log message ***


Revision 1.48 - (view) (download) (annotate) - [select for diffs]
Thu May 25 10:37:05 2000 UTC (25 years, 5 months ago) by gerd
Branch: MAIN
Changes since 1.47: +5 -0 lines
Diff to previous 1.47
*** empty log message ***


Revision 1.47 - (view) (download) (annotate) - [select for diffs]
Sat May 20 15:50:55 2000 UTC (25 years, 5 months ago) by gerd
Branch: MAIN
Changes since 1.46: +5 -1 lines
Diff to previous 1.46
*** empty log message ***


Revision 1.46 - (view) (download) (annotate) - [select for diffs]
Wed May 10 18:02:16 2000 UTC (25 years, 5 months ago) by fx
Branch: MAIN
Changes since 1.45: +4 -0 lines
Diff to previous 1.45
*** empty log message ***


Revision 1.45 - (view) (download) (annotate) - [select for diffs]
Fri May 5 13:19:49 2000 UTC (25 years, 5 months ago) by gerd
Branch: MAIN
Changes since 1.44: +5 -0 lines
Diff to previous 1.44
*** empty log message ***


Revision 1.44 - (view) (download) (annotate) - [select for diffs]
Mon May 1 15:22:05 2000 UTC (25 years, 6 months ago) by eliz
Branch: MAIN
Changes since 1.43: +5 -0 lines
Diff to previous 1.43
*** empty log message ***


Revision 1.43 - (view) (download) (annotate) - [select for diffs]
Thu Apr 27 19:06:42 2000 UTC (25 years, 6 months ago) by gerd
Branch: MAIN
Changes since 1.42: +4 -0 lines
Diff to previous 1.42
*** empty log message ***


Revision 1.42 - (view) (download) (annotate) - [select for diffs]
Wed Apr 19 14:38:26 2000 UTC (25 years, 6 months ago) by gerd
Branch: MAIN
Changes since 1.41: +4 -0 lines
Diff to previous 1.41
*** empty log message ***


Revision 1.41 - (view) (download) (annotate) - [select for diffs]
Wed Apr 19 11:32:47 2000 UTC (25 years, 6 months ago) by fx
Branch: MAIN
Changes since 1.40: +2 -0 lines
Diff to previous 1.40
*** empty log message ***


Revision 1.40 - (view) (download) (annotate) - [select for diffs]
Wed Apr 19 11:12:30 2000 UTC (25 years, 6 months ago) by fx
Branch: MAIN
Changes since 1.39: +4 -0 lines
Diff to previous 1.39
*** empty log message ***


Revision 1.39 - (view) (download) (annotate) - [select for diffs]
Sun Apr 16 14:54:52 2000 UTC (25 years, 6 months ago) by fx
Branch: MAIN
Changes since 1.38: +0 -5 lines
Diff to previous 1.38
*** empty log message ***


Revision 1.38 - (view) (download) (annotate) - [select for diffs]
Sun Apr 16 14:21:27 2000 UTC (25 years, 6 months ago) by fx
Branch: MAIN
Changes since 1.37: +4 -0 lines
Diff to previous 1.37
*** empty log message ***


Revision 1.37 - (view) (download) (annotate) - [select for diffs]
Sun Apr 16 14:12:19 2000 UTC (25 years, 6 months ago) by fx
Branch: MAIN
Changes since 1.36: +6 -0 lines
Diff to previous 1.36
*** empty log message ***


Revision 1.36 - (view) (download) (annotate) - [select for diffs]
Thu Mar 30 10:06:27 2000 UTC (25 years, 7 months ago) by raeburn
Branch: MAIN
Changes since 1.35: +4 -0 lines
Diff to previous 1.35
* configure.in: Line up "--help" output a little better.


Revision 1.35 - (view) (download) (annotate) - [select for diffs]
Sun Mar 26 14:13:40 2000 UTC (25 years, 7 months ago) by gerd
Branch: MAIN
Changes since 1.34: +7 -0 lines
Diff to previous 1.34
*** empty log message ***


Revision 1.34 - (view) (download) (annotate) - [select for diffs]
Sun Mar 12 15:18:44 2000 UTC (25 years, 7 months ago) by gerd
Branch: MAIN
Changes since 1.33: +5 -0 lines
Diff to previous 1.33
*** empty log message ***


Revision 1.33 - (view) (download) (annotate) - [select for diffs]
Wed Mar 8 18:42:02 2000 UTC (25 years, 7 months ago) by fx
Branch: MAIN
Changes since 1.32: +7 -0 lines
Diff to previous 1.32
*** empty log message ***


Revision 1.32 - (view) (download) (annotate) - [select for diffs]
Thu Mar 2 09:46:49 2000 UTC (25 years, 8 months ago) by gerd
Branch: MAIN
Changes since 1.31: +6 -2 lines
Diff to previous 1.31
*** empty log message ***


Revision 1.31 - (view) (download) (annotate) - [select for diffs]
Wed Mar 1 12:56:09 2000 UTC (25 years, 8 months ago) by gerd
Branch: MAIN
Changes since 1.30: +5 -0 lines
Diff to previous 1.30
*** empty log message ***


Revision 1.30 - (view) (download) (annotate) - [select for diffs]
Tue Feb 29 09:57:41 2000 UTC (25 years, 8 months ago) by gerd
Branch: MAIN
Changes since 1.29: +4 -0 lines
Diff to previous 1.29
*** empty log message ***


Revision 1.29 - (view) (download) (annotate) - [select for diffs]
Fri Feb 18 19:57:58 2000 UTC (25 years, 8 months ago) by fx
Branch: MAIN
Changes since 1.28: +4 -0 lines
Diff to previous 1.28
*** empty log message ***


Revision 1.28 - (view) (download) (annotate) - [select for diffs]
Fri Feb 18 15:35:03 2000 UTC (25 years, 8 months ago) by schwab
Branch: MAIN
Changes since 1.27: +5 -0 lines
Diff to previous 1.27
.


Revision 1.27 - (view) (download) (annotate) - [select for diffs]
Thu Feb 17 20:04:15 2000 UTC (25 years, 8 months ago) by raeburn
Branch: MAIN
Changes since 1.26: +5 -0 lines
Diff to previous 1.26
include -lz and -ljpeg when testing for -ltiff


Revision 1.26 - (view) (download) (annotate) - [select for diffs]
Thu Feb 17 09:49:05 2000 UTC (25 years, 8 months ago) by gerd
Branch: MAIN
Changes since 1.25: +4 -0 lines
Diff to previous 1.25
*** empty log message ***


Revision 1.25 - (view) (download) (annotate) - [select for diffs]
Sat Feb 12 16:37:27 2000 UTC (25 years, 8 months ago) by fx
Branch: MAIN
Changes since 1.24: +4 -0 lines
Diff to previous 1.24
*** empty log message ***


Revision 1.24 - (view) (download) (annotate) - [select for diffs]
Tue Feb 1 16:47:22 2000 UTC (25 years, 9 months ago) by gerd
Branch: MAIN
Changes since 1.23: +2 -0 lines
Diff to previous 1.23
*** empty log message ***


Revision 1.23 - (view) (download) (annotate) - [select for diffs]
Tue Feb 1 14:57:24 2000 UTC (25 years, 9 months ago) by gerd
Branch: MAIN
Changes since 1.22: +4 -0 lines
Diff to previous 1.22
*** empty log message ***


Revision 1.22 - (view) (download) (annotate) - [select for diffs]
Mon Jan 31 14:02:10 2000 UTC (25 years, 9 months ago) by gerd
Branch: MAIN
Changes since 1.21: +4 -0 lines
Diff to previous 1.21
*** empty log message ***


Revision 1.21 - (view) (download) (annotate) - [select for diffs]
Mon Jan 24 15:38:44 2000 UTC (25 years, 9 months ago) by fx
Branch: MAIN
Changes since 1.20: +9 -0 lines
Diff to previous 1.20
*** empty log message ***


Revision 1.20 - (view) (download) (annotate) - [select for diffs]
Tue Jan 18 10:53:22 2000 UTC (25 years, 9 months ago) by gerd
Branch: MAIN
Changes since 1.19: +5 -0 lines
Diff to previous 1.19
*** empty log message ***


Revision 1.19 - (view) (download) (annotate) - [select for diffs]
Tue Jan 11 10:26:40 2000 UTC (25 years, 9 months ago) by schwab
Branch: MAIN
Changes since 1.18: +5 -0 lines
Diff to previous 1.18
.


Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Wed Jan 5 22:15:02 2000 UTC (25 years, 9 months ago) by fx
Branch: MAIN
Changes since 1.17: +4 -0 lines
Diff to previous 1.17
*** empty log message ***


Revision 1.17 - (view) (download) (annotate) - [select for diffs]
Mon Jan 3 11:30:55 2000 UTC (25 years, 9 months ago) by schwab
Branch: MAIN
Changes since 1.16: +5 -0 lines
Diff to previous 1.16
.


Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Sat Dec 4 19:35:30 1999 UTC (25 years, 10 months ago) by fx
Branch: MAIN
Changes since 1.15: +5 -0 lines
Diff to previous 1.15
*** empty log message ***


Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Tue Nov 23 22:16:12 1999 UTC (25 years, 11 months ago) by raeburn
Branch: MAIN
Changes since 1.14: +6 -0 lines
Diff to previous 1.14
* configure.in: Restore Kerberos code deleted on 1999-05-29 that didn't need to
be deleted.  Check for the k5crypto library as well as the crypto library; MIT
Kerberos 1.1 changed the name.


Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Thu Nov 18 17:51:15 1999 UTC (25 years, 11 months ago) by fx
Branch: MAIN
Changes since 1.13: +4 -0 lines
Diff to previous 1.13
*** empty log message ***


Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Thu Nov 11 16:49:03 1999 UTC (25 years, 11 months ago) by gerd
Branch: MAIN
Changes since 1.12: +4 -0 lines
Diff to previous 1.12
*** empty log message ***


Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Mon Nov 8 17:14:11 1999 UTC (25 years, 11 months ago) by fx
Branch: MAIN
Changes since 1.11: +4 -0 lines
Diff to previous 1.11
*** empty log message ***


Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Thu Nov 4 23:23:30 1999 UTC (25 years, 11 months ago) by fx
Branch: MAIN
Changes since 1.10: +5 -0 lines
Diff to previous 1.10
*** empty log message ***


Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Mon Nov 1 12:14:09 1999 UTC (26 years ago) by gerd
Branch: MAIN
Changes since 1.9: +4 -0 lines
Diff to previous 1.9
*** empty log message ***


Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Wed Oct 27 10:24:42 1999 UTC (26 years ago) by gerd
Branch: MAIN
Changes since 1.8: +4 -0 lines
Diff to previous 1.8
*** empty log message ***


Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Sat Oct 23 13:23:13 1999 UTC (26 years ago) by gerd
Branch: MAIN
Changes since 1.7: +4 -0 lines
Diff to previous 1.7
*** empty log message ***


Revision 1.7 - (view) (download) (annotate) - [select for diffs]
Tue Oct 19 07:15:15 1999 UTC (26 years ago) by eggert
Branch: MAIN
Changes since 1.6: +10 -0 lines
Diff to previous 1.6
Add support for large files.  Merge glibc 2.1.2.

* configure.in (AC_CHECK_HEADERS): Add stdio_ext.h.
(HAVE_TM_GMTOFF): New symbol.
(AC_CHECK_FUNCS): Add __fpending, ftello, getloadavg, mblen,
mbrlen, strsignal.
(LOCALTIME_CACHE): Don't include stdlib.h, as config.h does this now.


Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Sun Oct 10 01:46:11 1999 UTC (26 years ago) by monnier
Branch: MAIN
Changes since 1.5: +5 -0 lines
Diff to previous 1.5
.


Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Sat Oct 9 19:13:07 1999 UTC (26 years ago) by rms
Branch: MAIN
Changes since 1.4: +5 -0 lines
Diff to previous 1.4
*** empty log message ***


Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Fri Oct 8 21:28:05 1999 UTC (26 years ago) by monnier
Branch: MAIN
Changes since 1.3: +4 -0 lines
Diff to previous 1.3
*** empty log message ***


Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Thu Oct 7 21:24:13 1999 UTC (26 years ago) by gerd
Branch: MAIN
Changes since 1.2: +4 -0 lines
Diff to previous 1.2
*** empty log message ***


Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Wed Oct 6 22:10:16 1999 UTC (26 years ago) by fx
Branch: MAIN
Changes since 1.1: +4 -0 lines
Diff to previous 1.1
#


Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Sun Oct 3 15:53:15 1999 UTC (26 years ago) by fx
Branch: MAIN
#


This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26