[Mew-dist 13756] unibyte

Kazu Yamamoto ( 山本和彦 ) kazu at example.com
2000年 8月 2日 (水) 03:01:52 JST


Emacs 20.x で、--unibyte (あるいはそれに準じる仕組み)を指定して立ち上
げ、ASCII + Latin-1 のみで使っている人のためのパッチです。(つまり、
Emacs 19 のように、8bit を ISO-8859-1 に割り当てる方法。この表現は何か
変か?)

日本人には関係ありませんが、問題は解決したという報告です。

以下のパッチは、1.95b50 に当たります。1.94.2 にも当たるでしょう。これ
を取り込んで、1.94.3 を出す予定です。

#半田さんにそういう使い方があるとは聞いていたのだけれど、まじめに対応
#していなかった。

--かず@ピッツ

Index: mew-mule.el
===================================================================
RCS file: /usr/home/kazu/cvsroot/Mew/mew/mew-mule.el,v
retrieving revision 1.18
retrieving revision 1.19
diff -c -r1.18 -r1.19
*** mew-mule.el	2000/07/01 05:37:00	1.18
--- mew-mule.el	2000/08/01 14:37:31	1.19
***************
*** 21,27 ****
  (defun mew-charset-guess-region (beg end)
    "Guess minimum charset name."
    (interactive "r")
!   (if (not mew-mule-p)
        (save-excursion
  	(goto-char beg)
  	(if (re-search-forward "[\200-\377]" end t)
--- 21,29 ----
  (defun mew-charset-guess-region (beg end)
    "Guess minimum charset name."
    (interactive "r")
!   (if (or (not mew-mule-p)
! 	  (and (boundp 'enable-multibyte-characters)
! 	       (null enable-multibyte-characters)))
        (save-excursion
  	(goto-char beg)
  	(if (re-search-forward "[\200-\377]" end t)




Mew-dist メーリングリストの案内