Ticket #90 (new 不具合)

Opened 4 months ago

SKK を入れると Meadow 起動時にエラーが出る

Reported by: Kouhei Yanagita <yanagi@shakenbu.org> Assigned to: kose
Priority: normal Milestone:
Component: パッケージ Version: 3.00
Severity: normal Keywords:
Cc:

Description

  • Meadow 3.00-r4213-1
  • skk 13.1-2

で、Meadow の起動時に

Symbol's value as variable is void: skk-large-jisyo

というエラーが出ます。

こういう感じでいいのでしょうか?

--- auto-autoloads.el.orig      2008-03-15 00:33:21.984375000 +0900
+++ auto-autoloads.el   2008-03-15 00:30:02.937500000 +0900
@@ -5,7 +5,9 @@
 ;;; Author: KOSEKI Yoshinori <kose@meadowy.org>
 
 (cond
- ((null skk-large-jisyo)
+ ((or
+    (not (boundp 'skk-large-jisyo))
+    (null skk-large-jisyo))
   (setq skk-large-jisyo (expand-file-name "etc/skk/SKK-JISYO.L" 
                                          netinstall-pkg-dir)))
  ((listp skk-large-jisyo)
@@ -14,7 +16,7 @@
   (setq skk-large-jisyo (expand-file-name "etc/skk/SKK-JISYO.L" 
                                          netinstall-pkg-dir))))
 
-(unless (file-exists-p skk-tut-file)
+(unless (and (boundp 'skk-tut-file) (file-exists-p skk-tut-file))
   (setq skk-tut-file (expand-file-name "etc/skk/SKK.tut" 
                                       netinstall-pkg-dir)))
 

Attachments


Add/Change #90 (SKK を入れると Meadow 起動時にエラーが出る)




Change Properties
Action