[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debian-users:08436] Re: canna and emacs 20.3



永田です。

At around Fri, 18 Sep 1998 22:21:01 +0900,
 Ryuichi Arafune <arafune@xxxxxxxxxxxxxxxxxxxxxxxxx> may have mentioned:

> 荒船です.
> おっかしーなあ.私の所では,全然再現しないんですが...
> #ちょっと最近cannaつかわなくなってきたんで,(skk練習中)なんで
> すが.
> 私の所も,永田さんとおなじなんですけどね.
> 
> ii  apel            8.17-1         APEL stands for "A Portable Emacs Library"
> ii  emacs-dl-canna  1.0.19980702-1 Canna extension for emacs20-dl
> ii  emacs20         20.3-1         The GNU Emacs editor.
> ii  emacs20-dl      20.3-3         The GNU Emacs editor.
> ii  emacs20-el      20.3-1         GNU Emacs LISP (.el) files.
> ii  emacsen-common  1.4.8          Common facilities for all emacsen.
> 
> ほんとーにdebianパッケージですか?

はい、本当にパッケージです。

パッケージ以外は入っていません。実は二日前にハードディスクの内容を
消して、slink を入れ直したばかりなので、結構自信があります。
ちなみに私以外にユーザはいません。

# 私が最後にソースから canna, emacs 等をコンパイルしたのはもう二年以上前で、
そのころは SunOS を使用していました。

> いまいちどご確認を

canna, emacs のソースは取ってきていないのですが、これで確認になりますか?
具体的に何か確認になる作業はありますか?

> あと,.emacsはどうなっています?

.emacs の縮小版を作成し、こちらの方でも確認をしたので、それでいいですか?

添付します。

-sen
; .emacs for sen

; enable multibye characters in buffer
(setq-default enable-multibyte-characters t)

; set the language environment to japanese
(set-language-environment "Japanese")

; coding system to use for buffer
(set-buffer-file-coding-system 'iso-2022-jp)

; what coding system to use for the terminal
;(set-terminal-coding-system 'japanese-shift-jis-dos)
(set-terminal-coding-system 'iso-2022-jp)

; another way to set the font
; set default font to something that can display japanese
;(set-default-font "-*-fixed-medium-r-normal-*-12-*-*-*-*-*-fontset-12")
;(set-default-font "fontset-12")

; canna -- not using localhost as a canna server seems like
; a bad idea security wise
(load-library "canna")
(canna)

; if we're using stuff under x
(cond 
 (window-system

  ; finally!  see the info pages for 'Defining fontsets' (in Emacs20 info)
  (create-fontset-from-fontset-spec 
   "-*-fixed-medium-r-normal-*-12-*-*-*-*-*-fontset-12")

  (create-fontset-from-fontset-spec 
   "-*-fixed-medium-r-normal-*-14-*-*-*-*-*-fontset-14")

  ; set up frame "look" -- should i check for the window system?
  (setq default-frame-alist
	(append 
	 (list 
;             '(foreground-color . "white")
;             '(background-color . "black")
	     '(cursor-color . "green")
	     '(vertical-scroll-bars . t)
	     '(width . 80)
	     '(height . 54)
	     '(top . 23)
	     '(left . 5)
; uncomment this line to have emacs die when you start mew
;	     '(font . "-*-fixed-medium-r-normal-*-16-*-*-*-*-*-fontset-standard") 
	     '(font . "-*-fixed-medium-r-normal-*-12-*-*-*-*-*-fontset-12")
;	     '(font . "-*-fixed-medium-r-normal-*-14-*-*-*-*-*-fontset-14")
	     )
	 default-frame-alist))

))