From adbdb661ada01b7916dd6bd2f0c27d6bfe65da8e Mon Sep 17 00:00:00 2001 From: Vinicius Jose Latorre Date: Fri, 18 May 2007 02:39:28 +0000 Subject: Use default color when foreground or background color are unspecified. --- lisp/ChangeLog | 9 +++++++++ lisp/ps-print.el | 44 ++++++++++++++++++++++++++------------------ 2 files changed, 35 insertions(+), 18 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7d083fb7976..22aab5cfe4d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,12 @@ +2007-05-17 Vinicius Jose Latorre + + * ps-print.el: Use default color when foreground or background color + are unspecified. Reported by Leo . + (ps-print-version): New version 6.7.4. + (ps-rgb-color): New argument. Use default color when color is + unspecified. + (ps-begin-job): Fix code. + 2007-05-17 Martin Rudalics * textmodes/ispell.el (ispell-start-process): Defend against bad diff --git a/lisp/ps-print.el b/lisp/ps-print.el index 4762f5173c3..ea86d15e557 100644 --- a/lisp/ps-print.el +++ b/lisp/ps-print.el @@ -10,11 +10,11 @@ ;; Maintainer: Kenichi Handa (multi-byte characters) ;; Vinicius Jose Latorre ;; Keywords: wp, print, PostScript -;; Version: 6.7.3 +;; Version: 6.7.4 ;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre -(defconst ps-print-version "6.7.3" - "ps-print.el, v 6.7.3 <2007/02/06 vinicius> +(defconst ps-print-version "6.7.4" + "ps-print.el, v 6.7.4 <2007/05/13 vinicius> Vinicius's last change version -- this file may have been edited as part of Emacs without changes to the version number. When reporting bugs, please also @@ -5817,21 +5817,27 @@ XSTART YSTART are the relative position for the first page in a sheet.") (ps-get-size (symbol-value font-sym) "font size" font-sym)) -(defun ps-rgb-color (color default) - (cond ((and color (listp color) (= (length color) 3) - (let ((cl color) - (ok t) e) - (while (and ok cl) - (setq e (car cl) - cl (cdr cl) - ok (and (floatp e) (<= 0.0 e) (<= e 1.0)))) - ok)) - color) - ((and (floatp color) (<= 0.0 color) (<= color 1.0)) - (list color color color)) - ((stringp color) (ps-color-scale color)) - (t (list default default default)) - )) +(defun ps-rgb-color (color unspecified default) + (cond + ;; (float float float) ==> (R G B) + ((and color (listp color) (= (length color) 3) + (let ((cl color) + (ok t) e) + (while (and ok cl) + (setq e (car cl) + cl (cdr cl) + ok (and (floatp e) (<= 0.0 e) (<= e 1.0)))) + ok)) + color) + ;; float ==> 0.0 = black .. 1.0 = white + ((and (floatp color) (<= 0.0 color) (<= color 1.0)) + (list color color color)) + ;; "colorName" but different from "unspecified-[bf]g" + ((and (stringp color) (not (string= color unspecified))) + (ps-color-scale color)) + ;; ok, use the default + (t + (list default default default)))) (defun ps-begin-job (genfunc) @@ -5913,6 +5919,7 @@ XSTART YSTART are the relative position for the first page in a sheet.") (ps-face-background-name 'default)) (t ps-default-bg)) + "unspecified-bg" 1.0) ps-default-foreground (ps-rgb-color (cond @@ -5924,6 +5931,7 @@ XSTART YSTART are the relative position for the first page in a sheet.") (ps-face-foreground-name 'default)) (t ps-default-fg)) + "unspecified-fg" 0.0) ps-default-color (and (eq ps-print-color-p t) ps-default-foreground) ps-current-color ps-default-color -- cgit v1.2.1 From 4827f21f5782d59c48f93a1024f0ca372a302a4b Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Fri, 18 May 2007 07:38:54 +0000 Subject: Restore manual change about absence of shell functions from 20070503, lost in previous regeneration from configure.in. --- configure | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index 9dd401b4d12..4e2af0b1e38 100755 --- a/configure +++ b/configure @@ -412,10 +412,10 @@ else fi test \$exitcode = 0") || { - echo No shell found that supports shell functions. - echo Please tell autoconf@gnu.org about your system, - echo including any error possibly output before this - echo message + echo Please tell bug-autoconf@gnu.org about your system, + echo including any error possibly output before this message. + echo This can help us improve future autoconf versions. + echo Configuration will now proceed without shell functions. } -- cgit v1.2.1 From 14395431bd08a9fa10740c8206265accc2501e5c Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Fri, 18 May 2007 07:43:29 +0000 Subject: Tweak previous change. --- etc/PROBLEMS | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/etc/PROBLEMS b/etc/PROBLEMS index 1f1ff5208eb..efa2bbd2227 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS @@ -2775,11 +2775,11 @@ should now succeed. *** OpenBSD 4.0 macppc: Segfault during dumping. The build aborts with signal 11 when the command `./temacs --batch ---load loadup bootstrap' tries to load files.el. This seems to be a -GCC problem specific to the macppc architecture, possibly only -occurring with older versions of GCC (e.g. 3.3.5). A workaround seems +--load loadup bootstrap' tries to load files.el. A workaround seems to be to reduce the level of compiler optimization used during the -build (from -O2 to -O1). +build (from -O2 to -O1). It is possible this is an OpenBSD +GCC problem specific to the macppc architecture, possibly only +occurring with older versions of GCC (e.g. 3.3.5). ** Installation -- cgit v1.2.1 From ce8fd9f3cbad01403813a348228812ccc81d8681 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 18 May 2007 22:31:25 +0000 Subject: (CSI-map, SS3-map) Moved from global-map to tpu-global-map. (tpu-original-global-map) Variable deleted. (tpu-control-keys-map) New keymap variable. (tpu-set-control-keys) Use tpu-reset-control-keys rather than setting keymapping directly. (tpu-reset-control-keys) Use tpu-control-keys-map instead of tpu-global-map. (tpu-edt-on): Activate the tpu-global-map. (tpu-edt-off): Deactivate the tpu-global-map. --- lisp/emulation/tpu-edt.el | 104 ++++++++++++++++++++++++++-------------------- 1 file changed, 58 insertions(+), 46 deletions(-) diff --git a/lisp/emulation/tpu-edt.el b/lisp/emulation/tpu-edt.el index f6e00cbbea6..8d65a267c4e 100644 --- a/lisp/emulation/tpu-edt.el +++ b/lisp/emulation/tpu-edt.el @@ -584,9 +584,12 @@ GOLD is the ASCII 7-bit escape sequence OP.") "Maps the SS3 function keys on the VT100 keyboard. SS3 is DEC's name for the sequence O.") -(defvar tpu-global-map nil "TPU-edt global keymap.") -(defvar tpu-original-global-map global-map - "Original non-TPU global keymap.") +(defvar tpu-global-map + (let ((map (make-sparse-keymap))) + (define-key map "\e[" CSI-map) + (define-key map "\eO" SS3-map) + map) + "TPU-edt global keymap.") (and (not (boundp 'minibuffer-local-ns-map)) (defvar minibuffer-local-ns-map (make-sparse-keymap) @@ -2267,46 +2270,43 @@ Accepts a prefix argument for the number of tpu-pan-columns to scroll." ;;; ;;; Functions to set, reset, and toggle the control key bindings ;;; -(defun tpu-set-control-keys nil + +(defvar tpu-control-keys-map + (let ((map (make-sparse-keymap))) + (define-key map "\C-\\" 'quoted-insert) ; ^\ + (define-key map "\C-a" 'tpu-toggle-overwrite-mode) ; ^A + (define-key map "\C-b" 'repeat-complex-command) ; ^B + (define-key map "\C-e" 'tpu-current-end-of-line) ; ^E + (define-key map "\C-h" 'tpu-next-beginning-of-line) ; ^H (BS) + (define-key map "\C-j" 'tpu-delete-previous-word) ; ^J (LF) + (define-key map "\C-k" 'tpu-define-macro-key) ; ^K + (define-key map "\C-l" 'tpu-insert-formfeed) ; ^L (FF) + (define-key map "\C-r" 'recenter) ; ^R + (define-key map "\C-u" 'tpu-delete-to-bol) ; ^U + (define-key map "\C-v" 'tpu-quoted-insert) ; ^V + (define-key map "\C-w" 'redraw-display) ; ^W + (define-key map "\C-z" 'tpu-exit) ; ^Z + map)) + +(defun tpu-set-control-keys () "Set control keys to TPU style functions." - (define-key global-map "\C-\\" 'quoted-insert) ; ^\ - (define-key global-map "\C-a" 'tpu-toggle-overwrite-mode) ; ^A - (define-key global-map "\C-b" 'repeat-complex-command) ; ^B - (define-key global-map "\C-e" 'tpu-current-end-of-line) ; ^E - (define-key global-map "\C-h" 'tpu-next-beginning-of-line) ; ^H (BS) - (define-key global-map "\C-j" 'tpu-delete-previous-word) ; ^J (LF) - (define-key global-map "\C-k" 'tpu-define-macro-key) ; ^K - (define-key global-map "\C-l" 'tpu-insert-formfeed) ; ^L (FF) - (define-key global-map "\C-r" 'recenter) ; ^R - (define-key global-map "\C-u" 'tpu-delete-to-bol) ; ^U - (define-key global-map "\C-v" 'tpu-quoted-insert) ; ^V - (define-key global-map "\C-w" 'redraw-display) ; ^W - (define-key global-map "\C-z" 'tpu-exit) ; ^Z - (setq tpu-control-keys t)) + (tpu-reset-control-keys 'tpu)) (defun tpu-reset-control-keys (tpu-style) "Set control keys to TPU or Emacs style functions." - (let* ((tpu (and tpu-style (not tpu-control-keys))) - (emacs (and (not tpu-style) tpu-control-keys)) - (doit (or tpu emacs))) - (cond (doit - (if emacs (setq tpu-global-map (copy-keymap global-map))) - (let ((map (if tpu tpu-global-map tpu-original-global-map))) - - (define-key global-map "\C-\\" (lookup-key map "\C-\\")) ; ^\ - (define-key global-map "\C-a" (lookup-key map "\C-a")) ; ^A - (define-key global-map "\C-b" (lookup-key map "\C-b")) ; ^B - (define-key global-map "\C-e" (lookup-key map "\C-e")) ; ^E - (define-key global-map "\C-h" (lookup-key map "\C-h")) ; ^H (BS) - (define-key global-map "\C-j" (lookup-key map "\C-j")) ; ^J (LF) - (define-key global-map "\C-k" (lookup-key map "\C-k")) ; ^K - (define-key global-map "\C-l" (lookup-key map "\C-l")) ; ^L (FF) - (define-key global-map "\C-r" (lookup-key map "\C-r")) ; ^R - (define-key global-map "\C-u" (lookup-key map "\C-u")) ; ^U - (define-key global-map "\C-v" (lookup-key map "\C-v")) ; ^V - (define-key global-map "\C-w" (lookup-key map "\C-w")) ; ^W - (define-key global-map "\C-z" (lookup-key map "\C-z")) ; ^Z - (setq tpu-control-keys tpu-style)))))) + (let ((parent (keymap-parent tpu-global-map))) + (if tpu-style + (if (eq parent tpu-control-keys-map) + nil ;All done already. + ;; Insert tpu-control-keys-map in the global map. + (set-keymap-parent tpu-control-keys-map parent) + (set-keymap-parent tpu-global-map tpu-control-keys-map)) + (if (not (eq parent tpu-control-keys-map)) + nil ;All done already. + ;; Remove tpu-control-keys-map from the global map. + (set-keymap-parent tpu-global-map (keymap-parent parent)) + (set-keymap-parent tpu-control-keys-map nil))) + (setq tpu-control-keys tpu-style))) (defun tpu-toggle-control-keys nil "Toggles control key bindings between TPU-edt and Emacs." @@ -2447,8 +2447,11 @@ If FILE is nil, try to load a default file. The default file names are (defun tpu-edt-on () "Turn on TPU/edt emulation." (interactive) - (and window-system (tpu-load-xkeys nil)) - (tpu-arrow-history) + ;; First, activate tpu-global-map, while protecting the original keymap. + (set-keymap-parent tpu-global-map global-map) + (setq global-map tpu-global-map) + (use-global-map global-map) + ;; Then do the normal TPU setup. (transient-mark-mode t) (add-hook 'post-command-hook 'tpu-search-highlight) (tpu-set-mode-line t) @@ -2457,10 +2460,14 @@ If FILE is nil, try to load a default file. The default file names are (setq-default page-delimiter "\f") (setq-default truncate-lines t) (setq scroll-step 1) - (setq global-map (copy-keymap global-map)) (tpu-set-control-keys) - (define-key global-map "\e[" CSI-map) - (define-key global-map "\eO" SS3-map) + (and window-system (tpu-load-xkeys nil)) + (tpu-arrow-history) + ;; Then protect tpu-global-map from user modifications. + (let ((map (make-sparse-keymap))) + (set-keymap-parent map global-map) + (setq global-map map) + (use-global-map map)) (setq tpu-edt-mode t)) (defun tpu-edt-off () @@ -2472,8 +2479,13 @@ If FILE is nil, try to load a default file. The default file names are (setq-default page-delimiter "^\f") (setq-default truncate-lines nil) (setq scroll-step 0) - (setq global-map tpu-original-global-map) - (use-global-map global-map) + ;; Remove tpu-global-map from the global map. + (let ((map global-map)) + (while map + (let ((parent (keymap-parent map))) + (if (eq tpu-global-map parent) + (set-keymap-parent map (keymap-parent parent)) + (setq map parent))))) (setq tpu-edt-mode nil)) (provide 'tpu-edt) -- cgit v1.2.1 From 64953c0a99a725ba3fb74b34b25a751cbb3cce4a Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 18 May 2007 22:32:08 +0000 Subject: (ispell-get-word): Return markers for start and end positions. (ispell-word): Assume END is a marker. --- lisp/ChangeLog | 19 +++++++++++++++++++ lisp/textmodes/ispell.el | 6 +++--- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 22aab5cfe4d..490a740c4fc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,22 @@ +2007-05-18 Rob Riepel + + * emulation/tpu-edt.el (CSI-map, SS3-map) Moved from global-map to + tpu-global-map. + (tpu-original-global-map) Variable deleted. + (tpu-control-keys-map) New keymap variable. + (tpu-set-control-keys) Use tpu-reset-control-keys rather than + setting keymapping directly. + (tpu-reset-control-keys) Use tpu-control-keys-map instead of + tpu-global-map. + (tpu-edt-on): Activate the tpu-global-map. + (tpu-edt-off): Deactivate the tpu-global-map. + +2007-05-18 Ryan Yeske + + * textmodes/ispell.el (ispell-get-word): Return markers + for start and end positions. + (ispell-word): Assume END is a marker. + 2007-05-17 Vinicius Jose Latorre * ps-print.el: Use default color when foreground or background color diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index e4b2dd9f040..b274185bf17 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el @@ -1669,7 +1669,7 @@ quit spell session exited." ;; to avoid collapsing markers before and after ;; into a single place. (ispell-insert-word new-word) - (delete-region (point) (+ (point) (- end start))) + (delete-region (point) end) ;; It is meaningless to preserve the cursor position ;; inside a word that has changed. (setq cursor-location (point)) @@ -1751,8 +1751,8 @@ which is in `ispell-local-dictionary-alist' or `ispell-dictionary-alist'." ;; return dummy word when just flagging misspellings (list "" (point) (point)) (error "No word found to check!")) - (setq start (match-beginning 0) - end (point) + (setq start (copy-marker (match-beginning 0)) + end (point-marker) word (buffer-substring-no-properties start end)) (list word start end)))) -- cgit v1.2.1 From de9606f01da32e4070bf7908ef4cf9ba835e4b6f Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 18 May 2007 22:56:08 +0000 Subject: (push-mark): Doc fix. --- lisp/ChangeLog | 4 ++++ lisp/simple.el | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 490a740c4fc..cd6587e6d57 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-05-18 Richard Stallman + + * simple.el (push-mark): Doc fix. + 2007-05-18 Rob Riepel * emulation/tpu-edt.el (CSI-map, SS3-map) Moved from global-map to diff --git a/lisp/simple.el b/lisp/simple.el index 7faa0547687..daedae6100c 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -3271,12 +3271,11 @@ purposes. See the documentation of `set-mark' for more information." If the last global mark pushed was not in the current buffer, also push LOCATION on the global mark ring. Display `Mark set' unless the optional second arg NOMSG is non-nil. -In Transient Mark mode, activate mark if optional third arg ACTIVATE non-nil. Novice Emacs Lisp programmers often try to use the mark for the wrong purposes. See the documentation of `set-mark' for more information. -In Transient Mark mode, this does not activate the mark." +In Transient Mark mode, activate mark if optional third arg ACTIVATE non-nil." (unless (null (mark t)) (setq mark-ring (cons (copy-marker (mark-marker)) mark-ring)) (when (> (length mark-ring) mark-ring-max) -- cgit v1.2.1 From 1d5bcd55d51e0621d9344ff9445b1cbc49eea79a Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Sat, 19 May 2007 05:08:05 +0000 Subject: (x_calc_absolute_position): Add BLOCK_INPUT around mac_get_window_bounds. --- src/ChangeLog | 5 +++++ src/macterm.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index 55cd3a2f60b..9e0ec429552 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2007-05-19 YAMAMOTO Mitsuharu + + * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around + mac_get_window_bounds. + 2007-05-17 Glenn Morris * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD. diff --git a/src/macterm.c b/src/macterm.c index 1acb521f47b..9c1a151f4a9 100644 --- a/src/macterm.c +++ b/src/macterm.c @@ -6084,7 +6084,9 @@ x_calc_absolute_position (f) /* Find the offsets of the outside upper-left corner of the inner window, with respect to the outer window. */ + BLOCK_INPUT; mac_get_window_bounds (f, &inner, &outer); + UNBLOCK_INPUT; width_diff = (outer.right - outer.left) - (inner.right - inner.left); height_diff = (outer.bottom - outer.top) - (inner.bottom - inner.top); -- cgit v1.2.1 From 55fcf5c6d4334691ed602decfcc8728bcbc373e0 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 19 May 2007 08:01:36 +0000 Subject: Fix URL of EmacsW32 site where building with image support is described. --- nt/ChangeLog | 5 +++++ nt/INSTALL | 8 ++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/nt/ChangeLog b/nt/ChangeLog index c5ad2555bbe..bec92ba17c5 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,3 +1,8 @@ +2007-05-19 Eli Zaretskii + + * INSTALL: Fix URL of EmacsW32 site where building with image + support is described. + 2007-03-31 Eli Zaretskii * INSTALL: Mention the VCVARS32.BAT batch file for VS.NET users. diff --git a/nt/INSTALL b/nt/INSTALL index c9afa8f5de3..7449323ace1 100644 --- a/nt/INSTALL +++ b/nt/INSTALL @@ -271,8 +271,12 @@ Binaries for the image libraries (among many others) can be found at the GnuWin32 project. These are built with MinGW, but they can be used with both GCC/MinGW and MSVC builds of Emacs. See the info on - http://ourcomments.org/Emacs/EmacsW32.html for more details about - installing image support libraries. + http://ourcomments.org/Emacs/w32-build-emacs.html, under "How to Get + Images Support", for more details about installing image support + libraries. Note specifically that, due to some packaging snafus in + the GnuWin32-supplied image libraries, you will need to download + _source_ packages for some of the libraries in order to get the + header files necessary for building Emacs with image support. * Building -- cgit v1.2.1 From 5073ad8e155ea640d0229b1e3bf9e5e75cf70e5e Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Sat, 19 May 2007 14:00:15 +0000 Subject: (t-mouse-mode): Improve docstring. --- lisp/t-mouse.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lisp/t-mouse.el b/lisp/t-mouse.el index 15521decd90..0da957ec3f8 100644 --- a/lisp/t-mouse.el +++ b/lisp/t-mouse.el @@ -270,10 +270,12 @@ The (secret) scrollbar interface is not implemented yet." ;;;###autoload (define-minor-mode t-mouse-mode - "Toggle t-mouse mode. + "Toggle t-mouse mode to use the mouse in Linux consoles. With prefix arg, turn t-mouse mode on iff arg is positive. -Turn it on to use Emacs mouse commands, and off to use t-mouse commands." +This allows the use of the mouse when operating on a Linux console, in the +same way as you can use the mouse under X11. +It requires the `mev' program, part of the `gpm' utilities." nil " Mouse" nil :global t (if t-mouse-mode ;; Turn it on -- cgit v1.2.1 From d46b87e92ff89e2a712fd9e45c4fac9524d773a4 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Sat, 19 May 2007 15:15:19 +0000 Subject: (skip_chars): Update syntax-table only after we checked that the new location is valid. --- src/ChangeLog | 5 +++++ src/syntax.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 9e0ec429552..220a32a5022 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2007-05-19 Stefan Monnier + + * syntax.c (skip_chars): Update syntax-table only after we checked that + the new location is valid. + 2007-05-19 YAMAMOTO Mitsuharu * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around diff --git a/src/syntax.c b/src/syntax.c index a9e6dda81fe..acb5d37825c 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -1669,10 +1669,10 @@ skip_chars (forwardp, syntaxp, string, lim, handle_iso_classes) p = GPT_ADDR; stop = endp; } + UPDATE_SYNTAX_TABLE_BACKWARD (pos - 1); if (! fastmap[(int) SYNTAX (p[-1])]) break; p--, pos--; - UPDATE_SYNTAX_TABLE_BACKWARD (pos - 1); } } } -- cgit v1.2.1 From 371e7ccfd568279468e45f28aa636e15a71c99f7 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sat, 19 May 2007 18:59:16 +0000 Subject: ** cloos@jhcloos.com, May 11: A redisplay bug in 22.0.99 This is fixed. --- admin/FOR-RELEASE | 2 -- 1 file changed, 2 deletions(-) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 5dd148baf09..bb500fe7c71 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -43,8 +43,6 @@ http://lists.gnu.org/archive/html/emacs-devel/2007-04/msg00732.html ** michael.ewe@arcor.de, Apr 24: 22.0.98 not starting on Solaris 10/I386 http://lists.gnu.org/archive/html/emacs-devel/2007-04/msg01113.html -** cloos@jhcloos.com, May 11: A redisplay bug in 22.0.99 - * DOCUMENTATION ** Check the Emacs Tutorial. -- cgit v1.2.1 From 8d0b40c0401e098054fef29db480501e589cd02c Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 19 May 2007 22:31:10 +0000 Subject: *** empty log message *** --- admin/FOR-RELEASE | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index bb500fe7c71..60cd13d76aa 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -36,13 +36,11 @@ to the hack introduced on 2005-07-01 to fix some other Cleartype problem. * BUGS -** Spurious redisplay bug not fixed. -http://lists.gnu.org/archive/html/emacs-devel/2007-04/msg00443.html -http://lists.gnu.org/archive/html/emacs-devel/2007-04/msg00732.html - ** michael.ewe@arcor.de, Apr 24: 22.0.98 not starting on Solaris 10/I386 http://lists.gnu.org/archive/html/emacs-devel/2007-04/msg01113.html +** coldwell@redhat.com, May 18: 22.0.99 emacs dumper (?) problem + * DOCUMENTATION ** Check the Emacs Tutorial. -- cgit v1.2.1