Eli Zaretskii | 1 Sep 2003 07:45
Picon

Changes to emacs/lisp/progmodes/compile.el

Index: emacs/lisp/progmodes/compile.el
diff -c emacs/lisp/progmodes/compile.el:1.277 emacs/lisp/progmodes/compile.el:1.278
*** emacs/lisp/progmodes/compile.el:1.277	Sun Aug 17 05:49:42 2003
--- emacs/lisp/progmodes/compile.el	Mon Sep  1 01:45:44 2003
***************
*** 1751,1761 ****
  			   (consp argp))))
  ;;;###autoload (define-key ctl-x-map "`" 'next-error)

! (defun previous-error ()
    "Visit previous compilation error message and corresponding source code.
! This operates on the output from the \\[compile] command."
!   (interactive)
!   (next-error -1))

  (defun first-error ()
    "Reparse the error message buffer and start at the first error.
--- 1751,1765 ----
  			   (consp argp))))
  ;;;###autoload (define-key ctl-x-map "`" 'next-error)

! (defun previous-error (argp)
    "Visit previous compilation error message and corresponding source code.
! 
! A prefix ARGP specifies how many error messages to move;
! negative means move forward to next error messages.
! 
! This operates on the output from the \\[compile] and \\[grep] commands."
!   (interactive "P")
!   (next-error (- (prefix-numeric-value argp))))
(Continue reading)

Eli Zaretskii | 1 Sep 2003 07:47
Picon

Changes to emacs/lisp/ChangeLog

Index: emacs/lisp/ChangeLog
diff -c emacs/lisp/ChangeLog:1.5366 emacs/lisp/ChangeLog:1.5367
*** emacs/lisp/ChangeLog:1.5366	Sat Aug 30 22:11:21 2003
--- emacs/lisp/ChangeLog	Mon Sep  1 01:47:12 2003
***************
*** 1,3 ****
--- 1,8 ----
+ 2003-09-01  Kevin Rodgers <ihs_4664 <at> yahoo.com>  (tiny change)
+ 
+ 	* progmodes/compile.el (previous-error): Accept a prefix
+ 	argument, similarly to next-error.
+ 
  2003-08-31  Masatake YAMATO  <jet <at> gyve.org>

  	* pcvs.el (cvs-do-removal): Use = instead of eq to check
Kenichi Handa | 1 Sep 2003 13:21
Picon

Changes to emacs/lisp/ChangeLog

Index: emacs/lisp/ChangeLog
diff -c emacs/lisp/ChangeLog:1.5367 emacs/lisp/ChangeLog:1.5368
*** emacs/lisp/ChangeLog:1.5367	Mon Sep  1 01:47:12 2003
--- emacs/lisp/ChangeLog	Mon Sep  1 07:21:24 2003
***************
*** 1,3 ****
--- 1,8 ----
+ 2003-09-01  Kenichi Handa  <handa <at> m17n.org>
+ 
+ 	* international/fontset.el (setup-default-fontset): For Thai
+ 	font, specify "*" family.
+ 
  2003-09-01  Kevin Rodgers <ihs_4664 <at> yahoo.com>  (tiny change)

  	* progmodes/compile.el (previous-error): Accept a prefix
Kenichi Handa | 1 Sep 2003 13:15
Picon

Changes to emacs/lisp/international/fontset.el

Index: emacs/lisp/international/fontset.el
diff -c emacs/lisp/international/fontset.el:1.61 emacs/lisp/international/fontset.el:1.62
*** emacs/lisp/international/fontset.el:1.61	Fri Aug 15 08:10:45 2003
--- emacs/lisp/international/fontset.el	Mon Sep  1 07:15:22 2003
***************
*** 47,53 ****
  	     (latin-iso8859-2 . (nil . "ISO8859-2"))
  	     (latin-iso8859-3 . (nil . "ISO8859-3"))
  	     (latin-iso8859-4 . (nil . "ISO8859-4"))
! 	     (thai-tis620 . (nil . "TIS620"))
  	     (greek-iso8859-7 . (nil . "ISO8859-7"))
  	     (arabic-iso8859-6 . (nil . "ISO8859-6"))
  	     (hebrew-iso8859-8 . (nil . "ISO8859-8"))
--- 47,56 ----
  	     (latin-iso8859-2 . (nil . "ISO8859-2"))
  	     (latin-iso8859-3 . (nil . "ISO8859-3"))
  	     (latin-iso8859-4 . (nil . "ISO8859-4"))
! 	     ;; Setting "*" family is for a workaround of the problem
! 	     ;; that a font of wrong size is preferred if the font
! 	     ;; family matches with a requested one.
! 	     (thai-tis620 . ("*" . "TIS620"))
  	     (greek-iso8859-7 . (nil . "ISO8859-7"))
  	     (arabic-iso8859-6 . (nil . "ISO8859-6"))
  	     (hebrew-iso8859-8 . (nil . "ISO8859-8"))
Dave Love | 1 Sep 2003 16:38
Picon

Changes to emacs/src/ChangeLog

Index: emacs/src/ChangeLog
diff -c emacs/src/ChangeLog:1.3356 emacs/src/ChangeLog:1.3357
*** emacs/src/ChangeLog:1.3356	Sun Aug 31 18:15:14 2003
--- emacs/src/ChangeLog	Mon Sep  1 10:38:33 2003
***************
*** 1,3 ****
--- 1,11 ----
+ 2003-09-01  Dave Love  <fx <at> gnu.org>
+ 
+ 	* Makefile.in (alloca.o): Remove commands.
+ 	(coding.o): Depend on intervals.h composite.h window.h.
+ 	(emacs.o): Depend on window.h keyboard.h keymap.h.
+ 	(gtkutil.o): Depend on keyboard.h charset.h coding.h.
+ 	(bytecode.o): Depend on window.h.
+ 
  2003-08-31  Jason Rumney  <jasonr <at> gnu.org>

  	* w32term.c (w32_per_char_metric): Allow cached metrics to be
Miles Bader | 1 Sep 2003 17:46
Picon
Gravatar

Changes to emacs/lisp/disp-table.el

Index: emacs/lisp/disp-table.el
diff -c emacs/lisp/disp-table.el:1.49 emacs/lisp/disp-table.el:1.50
*** emacs/lisp/disp-table.el:1.49	Tue Feb  4 06:07:39 2003
--- emacs/lisp/disp-table.el	Mon Sep  1 11:45:11 2003
***************
*** 227,230 ****
--- 227,231 ----

  (provide 'disp-table)

+ ;;; arch-tag: ffe4c28c-960c-47aa-b8a8-ae89d371ffc7
  ;;; disp-table.el ends here
Miles Bader | 1 Sep 2003 17:47
Picon
Gravatar

Changes to emacs/lisp/gnus/nnmbox.el

Index: emacs/lisp/gnus/nnmbox.el
diff -c emacs/lisp/gnus/nnmbox.el:1.7 emacs/lisp/gnus/nnmbox.el:1.8
*** emacs/lisp/gnus/nnmbox.el:1.7	Tue Feb  4 08:06:38 2003
--- emacs/lisp/gnus/nnmbox.el	Mon Sep  1 11:45:24 2003
***************
*** 596,599 ****
--- 596,600 ----

  (provide 'nnmbox)

+ ;;; arch-tag: 611dd95f-be37-413a-b3ae-8b059ba93659
  ;;; nnmbox.el ends here
Miles Bader | 1 Sep 2003 17:48
Picon
Gravatar

Changes to emacs/lisp/term/pc-win.el

Index: emacs/lisp/term/pc-win.el
diff -c emacs/lisp/term/pc-win.el:1.34 emacs/lisp/term/pc-win.el:1.35
*** emacs/lisp/term/pc-win.el:1.34	Tue Feb  4 08:28:06 2003
--- emacs/lisp/term/pc-win.el	Mon Sep  1 11:45:36 2003
***************
*** 240,243 ****
--- 240,244 ----

  ;; ---------------------------------------------------------------------------

+ ;;; arch-tag: 5cbdb455-b495-427b-95d0-e417d77d00b4
  ;;; pc-win.el ends here
Miles Bader | 1 Sep 2003 17:46
Picon
Gravatar

Changes to emacs/lisp/emacs-lisp/bytecomp.el

Index: emacs/lisp/emacs-lisp/bytecomp.el
diff -c emacs/lisp/emacs-lisp/bytecomp.el:2.136 emacs/lisp/emacs-lisp/bytecomp.el:2.137
*** emacs/lisp/emacs-lisp/bytecomp.el:2.136	Tue Aug  5 21:08:21 2003
--- emacs/lisp/emacs-lisp/bytecomp.el	Mon Sep  1 11:45:19 2003
***************
*** 10,16 ****

  ;;; This version incorporates changes up to version 2.10 of the
  ;;; Zawinski-Furuseth compiler.
! (defconst byte-compile-version "$Revision: 2.136 $")

  ;; This file is part of GNU Emacs.

--- 10,16 ----

  ;;; This version incorporates changes up to version 2.10 of the
  ;;; Zawinski-Furuseth compiler.
! (defconst byte-compile-version "$Revision: 2.137 $")

  ;; This file is part of GNU Emacs.

***************
*** 4039,4042 ****
--- 4039,4043 ----

  (run-hooks 'bytecomp-load-hook)

+ ;;; arch-tag: 9c97b0f0-8745-4571-bfc3-8dceb677292a
  ;;; bytecomp.el ends here
(Continue reading)

Miles Bader | 1 Sep 2003 17:46
Picon
Gravatar

Changes to emacs/lib-src/fakemail.c

Index: emacs/lib-src/fakemail.c
diff -c emacs/lib-src/fakemail.c:1.30 emacs/lib-src/fakemail.c:1.31
*** emacs/lib-src/fakemail.c:1.30	Tue Jan  1 14:15:26 2002
--- emacs/lib-src/fakemail.c	Mon Sep  1 11:45:03 2003
***************
*** 750,752 ****
--- 750,755 ----

  #endif /* not MSDOS */
  #endif /* not BSD 4.2 (or newer) */
+ 
+ /* arch-tag: acb0afa6-315a-4c5b-b9e3-def5725c8783
+    (do not change this comment) */

Gmane