Your message dated Mon, 20 Feb 2006 02:32:12 -0800 with message-id <[EMAIL PROTECTED]> and subject line Bug#322844: fixed in ddskk 13.0.90.cvs20060220-1 has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database)
--- Begin Message ---Package: ddskk Version: 12.2.rel.0-3 There is now a CVS version of Emacs (22.0.50) in Debian (emacs-snapshot). However, ddskk 12.2.rel.0-3 fails with it. I've created the backport patch from the upstream CVS. Please see the attached patch. Also, please add `emacs-snapshot' to the dependency. ChangeLog: 2005-02-26 Tetsuo Tsukamoto <[EMAIL PROTECTED]> * skk-server.el (skk-open-network-stream): For Emacs 22.0.50 or greater, call `set-process-query-on-exit-flag' instead of `process-kill-without-query'. 2004-11-28 Tetsuo Tsukamoto <[EMAIL PROTECTED]> * skk-macs.el (skk-replace-regexp-in-string): New function. * skk-isearch.el (isearch-repeat): Don't call `replace-regexp'. Call `skk-replace-regexp-in-string' instead. 2004-04-15 Tetsuo Tsukamoto <[EMAIL PROTECTED]> Patch by KOSEKI Yoshinori <[EMAIL PROTECTED]> * SKK-MK (SKK_MODULES): Add module skk-e21 for Emacs 22 or greater. Thanks, -- Tatsuya Kinoshita--- ddskk-12.2.rel.0-3/SKK-MK +++ ddskk-12.2.rel.0/SKK-MK @@ -325,7 +325,7 @@ ;; FSFmacs (when (featurep 'faces) (add-to-list 'list 'ccc)) - (when (= emacs-major-version 21) + (when (string< "5.0" mule-version) (add-to-list 'list 'skk-e21)))) ;; skk-jisx0213.el (when (condition-case nil --- ddskk-12.2.rel.0-3/skk-isearch.el +++ ddskk-12.2.rel.0/skk-isearch.el @@ -646,12 +646,8 @@ skk-isearch-whitespace-regexp "")))) (when (string-match regexp isearch-message) - (setq isearch-message - (with-temp-buffer - (insert isearch-message) - (goto-char (point-min)) - (replace-regexp regexp "") - (buffer-substring (point-min) (point-max)))) + (setq isearch-message (skk-replace-regexp-in-string regexp "" + isearch-message)) (setq isearch-cmds (cdr isearch-cmds)) (isearch-push-state) (isearch-update)))))) --- ddskk-12.2.rel.0-3/skk-macs.el +++ ddskk-12.2.rel.0/skk-macs.el @@ -406,6 +406,17 @@ (setq keys (recent-keys)) (vector (aref keys (1- (length keys))))))))) +(defun skk-replace-regexp-in-string (regexp rep string + &optional + fixedcase literal subexp start) + (static-cond + ((and (eq skk-emacs-type 'xemacs) + (not (fboundp 'replace-regexp-in-string))) + (replace-in-string string regexp rep literal)) + (t + (replace-regexp-in-string regexp rep string + fixedcase literal subexp start)))) + ;;; version independent (defsubst skk-cursor-set (&optional color force) (when (or skk-use-color-cursor --- ddskk-12.2.rel.0-3/skk-server.el +++ ddskk-12.2.rel.0/skk-server.el @@ -210,7 +210,11 @@ skk-server-host (or skk-server-portnum "skkserv")))) - (process-kill-without-query process) + (static-cond + ((string-lessp "22.0" emacs-version) + (set-process-query-on-exit-flag process nil)) + (t + (process-kill-without-query process))) process))) (defun skk-startup-server (arg)
pgp28nPdwduci.pgp
Description: PGP signature
--- End Message ---
--- Begin Message ---Source: ddskk Source-Version: 13.0.90.cvs20060220-1 We believe that the bug you reported is fixed in the latest version of ddskk, which is due to be installed in the Debian FTP archive: ddskk_13.0.90.cvs20060220-1.diff.gz to pool/main/d/ddskk/ddskk_13.0.90.cvs20060220-1.diff.gz ddskk_13.0.90.cvs20060220-1.dsc to pool/main/d/ddskk/ddskk_13.0.90.cvs20060220-1.dsc ddskk_13.0.90.cvs20060220-1_all.deb to pool/main/d/ddskk/ddskk_13.0.90.cvs20060220-1_all.deb ddskk_13.0.90.cvs20060220.orig.tar.gz to pool/main/d/ddskk/ddskk_13.0.90.cvs20060220.orig.tar.gz A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Kenshi Muto <[EMAIL PROTECTED]> (supplier of updated ddskk package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Mon, 20 Feb 2006 19:03:42 +0900 Source: ddskk Binary: ddskk Architecture: source all Version: 13.0.90.cvs20060220-1 Distribution: unstable Urgency: low Maintainer: Kenshi Muto <[EMAIL PROTECTED]> Changed-By: Kenshi Muto <[EMAIL PROTECTED]> Description: ddskk - Simple Kana to Kanji conversion program Closes: 270053 322844 353630 Changes: ddskk (13.0.90.cvs20060220-1) unstable; urgency=low . * New upstream release (cvs snapshot 2006.02.20 version) - Now it supports emacs-snapshot (closes: #322844) * New Maintainer (closes: #353630) * Supports xemacs21-gnome-*. (closes: #270053) Files: 0ec7e85519c17fc60ed092ec7731ac81 662 utils optional ddskk_13.0.90.cvs20060220-1.dsc 8cbd1dc619279c5f29827e4eb7566cbe 683551 utils optional ddskk_13.0.90.cvs20060220.orig.tar.gz 69aa9a4f35edcf3cb6f30b04aa8bec75 7241 utils optional ddskk_13.0.90.cvs20060220-1.diff.gz 86c23ca4a892fba9467d16f39fc888c5 569008 utils optional ddskk_13.0.90.cvs20060220-1_all.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) iEYEARECAAYFAkP5lp0ACgkQQKW+7XLQPLELwwCdGHPhQznF284o7TUhelRGddjv p8wAn2yU5j+BnC5DOzJfc8AOFQPfgvmG =PEZL -----END PGP SIGNATURE-----
--- End Message ---

