emacs-devel
[Top][All Lists]
Advanced

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

New pretest 21.0.91


From: Gerd Moellmann
Subject: New pretest 21.0.91
Date: Sun, 19 Nov 2000 17:43:04 +0100 (CET)
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.0.91

There is a new pretest available, in

  <ftp://alpha.gnu.org/gnu/emacs/emacs-21.0.91.xtar.gz>
  <ftp://alpha.gnu.org/gnu/emacs/leim-21.0.91.xtar.gz>

(The directory containing the files isn't listable.)

If you have the tars from the previous pretest, and you have the
`xdelta' utility, you can instead download the much smaller

  <ftp://alpha.gnu.org/gnu/emacs/emacs-21.0.90-21.0.91.xdelta>
  <ftp://alpha.gnu.org/gnu/emacs/leim-21.0.90-21.0.91.xdelta>

You can use a command like

  $ xdelta patch XDELTA PREVIOUS-TAR

to generate the new tar from the old one, where XDELTA is the xdelta
file you downloaded, and PREVIOUS-TAR is the tar file from the
previous pretest.
  
Information about xdelta can be found on the GNU ftp site, in
/non-gnu/xdelta.README.

Most important changes since 21.0.90:

RCS file: /cvs/emacs/lisp/ChangeLog,v
retrieving revision 1.1493
retrieving revision 1.1499
diff -c -r1.1493 -r1.1499
*** ChangeLog   2000/11/16 18:28:36     1.1493
--- ChangeLog   2000/11/19 13:51:05     1.1499
***************
*** 1,3 ****
--- 1,40 ----
+ 2000-11-19  Gerd Moellmann  <address@hidden>
+ 
+       * textmodes/artist.el: New file.
+ 
+ 2000-11-19  Andre Spiegel  <address@hidden>
+ 
+       * vc-rcs.el (vc-rcs-state): Call vc-workfile-unchanged-p only here, 
+       and differentiate according to checkout model.
+       (vc-rcs-fetch-master-state): Don't call vc-workfile-unchanged-p,
+       since this function is only concerned with master state.
+ 
+       * vc-hooks.el (vc-workfile-unchanged-p, 
+       vc-default-workfile-unchanged-p): Moved here from vc.el.
+ 
+       * vc.el (vc-workfile-unchanged-p, 
+       vc-default-workfile-unchanged-p): See above.
+ 
+ 2000-11-19  Miles Bader  <address@hidden>
+ 
+       * image-file.el (insert-image-file): Make `intangible' and
+       `read-only' properties rear-nonsticky too.
+ 
+ 2000-11-18  Gerd Moellmann  <address@hidden>
+ 
+       * ps-print.el: Update copyright notice.
+ 
+       * tooltip.el (tooltip-x-offset, tooltip-y-offset): New user-options.
+       (tooltip-show): Use the offsets.
+ 
+       * bindings.el (mode-line-modified): Fix a typo.
+       (mode-line-toggle-modified, mode-line-widen) 
+       (mode-line-abbrev-mode, mode-line-auto-fill-mode): Fix typos.
+ 
+ 2000-11-17  Gerd Moellmann  <address@hidden>
+ 
+       * ps-print.el: Minor fixes from author.
+ 

Index: ChangeLog
===================================================================
RCS file: /cvs/emacs/src/ChangeLog,v
retrieving revision 1.1096
retrieving revision 1.1108
diff -c -r1.1096 -r1.1108
*** ChangeLog   2000/11/17 16:11:26     1.1096
--- ChangeLog   2000/11/19 15:20:53     1.1108
***************
*** 1,3 ****
--- 1,66 ----
+ 2000-11-19  Gerd Moellmann  <address@hidden>
+ 
+       * window.c (Fwindow_list): Change parameter list to be XEmacs
+       compatible.
+       (window_list_1): New function.
+       (window_loop): Use it instead of Fwindow_list.
+ 
+       * sysdep.c (emacs_ospeed): New variable.
+       (toplevel): Don't declare ospeed extern.
+       (init_baud_rate): Use emacs_ospeed instead of ospeed.
+ 
+       * termcap.c (ospeed): Remove.
+       (tputs) [!emacs]: Remove unused code.
+       (tgetent): Avoid a compiler warning.
+ 
+       * xterm.c (x_set_toolkit_scroll_bar_thumb, x_scroll_bar_create)
+       (x_scroll_bar_remove, XTset_vertical_scroll_bar): Call
+       SCROLL_BAR_X_WIDGET with additional argument DPY.
+ 
+       * xterm.h (struct scroll_bar): Members x_widget_low, x_widget_high
+       removed.
+       (SCROLL_BAR_X_WIDGET): Get the widget via XtWindowToWidget.
+       Take the X display as additional argument.
+       (SET_SCROLL_BAR_X_WIDGET): Store the window of the widget, since
+       `Widget' is a pointer type that's not easily stored in Lisp_Object
+       form in a portable way.
+       
+       * dispnew.c (update_text_area): Fix last change.
+ 
+ 2000-11-18  Gerd Moellmann  <address@hidden>
+ 
+       * xdisp.c: Use BINDING_STACK_SIZE throughout.
+ 
+       * xfns.c (x_set_tool_bar_lines): When clearing the frame, also
+       clear current matrices.
+ 
+       * buffer.c (mmap_enlarge): Don't print a message on stderr
+       if mapping new memory at the end of the existing region fails.
+ 
+       * dispnew.c (update_text_area): Don't skip over equal glyphs
+       when the last current glyph overlaps the glyph to its right.
+ 
+ 2000-11-18  Miles Bader  <address@hidden>
+ 
+       * xdisp.c (message_log_check_duplicate): Let "..."-detection match
+       lines that *end* with "..." too (that's the most common case!).
+ 
+ 2000-11-18  Gerd Moellmann  <address@hidden>
+ 
+       * xdisp.c (resize_mini_window): Temporarily change to the
+       mini-window's buffer if necessary.
+ 
+       * xfns.c (Fx_show_tip): Use default y-offset of -10 so that
+       the tooltip obscures less text under it.
+ 
+ 2000-11-17  Gerd Moellmann  <address@hidden>
+ 
+       * puresize.h (BASE_PURESIZE): Increase to 700000.
+ 
+ 2000-11-18  Jason Rumney  <address@hidden>
+ 
+       * w32term.c (w32_draw_bitmap): Use face to set colors.
+ 

Index: ChangeLog
===================================================================
RCS file: /cvs/emacs/leim/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -c -r1.36 -r1.37
*** ChangeLog   2000/10/21 13:20:46     1.36
--- ChangeLog   2000/11/18 00:04:29     1.37
***************
*** 1,3 ****
--- 1,8 ----
+ 2000-11-17  Kenichi Handa  <address@hidden>
+ 
+       * quail/japanese.el (quail-japanese-kanji-kkc): Use marker to
+       remember the conversion start.
+ 



reply via email to

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