Your message dated Fri, 27 Jan 2012 21:46:39 +0000
with message-id <[email protected]>
and subject line Bug#657572: Removed package(s) from unstable
has caused the Debian Bug report #281592,
regarding improvement of dot.emacs.pl
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
281592: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=281592
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: language-env
Version: 0.57.3

(1) XEmacs does not read ~/.emacs, so (if (featurep 'xemacs) ...)
    statement is meaningless.

(2) grep-program docstring say following:

    | The default grep program for `grep-command' and `grep-find-command'.
    | This variable's value takes effect when `grep-compute-defaults' is called.

    Setting grep-program is better than grep-command.

(3) global-font-lock-mode() is autoloaded, So (require 'font-lock) is
    not needed.

(4) If you execute "C-x RET l Korean RET C-x RET l Japanese RET",
    the input-method setings which set-language-env set is cleared.

    the following way is fix.
    (set-language-info "Japanese" 'input-method "japanese-skk")
    (set-language-environment "Japanese")

the following patch fix (1), (2), and (3).

--- language-env-0.57.3.orig/ja/dot.emacs.pl    2004-08-22 10:44:13.000000000 
+0900
+++ language-env-0.57.3/ja/dot.emacs.pl 2004-11-17 04:35:33.000000000 +0900
@@ -21,14 +21,9 @@
       ))
 ; 日本語 info が文字化けしないように
 (auto-compression-mode t)
-; xemacs の shell-mode で 日本語 EUC が使えるようにする
-(if (featurep 'xemacs)
-    (add-hook 'shell-mode-hook (function
-       (lambda () (set-buffer-process-coding-system 'euc-japan 'euc-japan))))
-)
 ; 日本語 grep
-(if (file-exists-p "/usr/bin/lgrep")
-    (setq grep-command "lgrep -n ")
+(if (executable-find "lgrep")
+    (setq grep-program "lgrep")
 )

 EOF
@@ -170,10 +165,7 @@
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;; Xでのカラー表示
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-(require 'font-lock)
-(if (not (featurep 'xemacs))
-    (global-font-lock-mode t)
-)
+(global-font-lock-mode t)

 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;; C プログラムの書式

-- 
Hiroshi Fujishima


--- End Message ---
--- Begin Message ---
Version: 0.69+rm

Dear submitter,

as the package language-env has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see http://bugs.debian.org/657572

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].

Debian distribution maintenance software
pp.
Luca Falavigna (the ftpmaster behind the curtain)


--- End Message ---

Reply via email to