-
Notifications
You must be signed in to change notification settings - Fork 42
/
ChangeLog.2.daredevil
2960 lines (2140 loc) · 95.2 KB
/
ChangeLog.2.daredevil
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2000-10-31 Mikio Nakajima <[email protected]>
* doc/skk-faq.texi: Sync up with maintrunk.
* doc/skk.texi: Ditto.
2000-10-30 Mikio Nakajima <[email protected]>
* skk-vars.el (skk-lookup-option-alist): Use "MYPAEDIA" spec of
「辞・典・盤」 version MYPAEDIA.
* skk-annotation.el (skk-nunion): New advice.
2000-10-29 Mikio Nakajima <[email protected]>
* skk-vars.el (skk-lookup-option-alist): Doc updated.
Created new element "CHIEZO".
Specified 7th element of "IWAKOKU" in order to remove "〈", "〉",
"{", "}", "( and ")".
Specified 5th element of "MYPAEDIA" in order to pick up necessary
strings between parens and/or blackets.
(skk-lookup-default-option-list): Doc updated.
* experimental/skk-annotation.el (skk-annotation-add): Bug fixed.
* experimental/skk-annotation.el (skk-annotation-mode-map): Change
key bind skk-annotation-quit to "\C-c\C-k".
(skk-annotation-add): Document updated. Use `skk-annotation-setup'.
(skk-annotation-quit): Call `kill-buffer'.
Rename to `skk-annotation-kill'.
(skk-annotation-quote): Use `skk-annotation-setup'.
(skk-annotation-remove): Use `skk-annotation-setup'.
Abolish optional argument NO-PREVIOUS-ANNOTATION.
(skk-annotation-setup): New function.
* skk-vars.el (skk-annotation-annotated-word): New internal
variable.
2000-10-28 Mikio Nakajima <[email protected]>
* experimental/skk-annotation.el (skk-annotation-quit): New
function.
(skk-annotation-add): Bug fixed.
Put out skk-annotation-quit key bind, too.
(skk-annotation-last-word-1): Bug fixed.
(skk-annotation-remove): Do not change END to marker.
(skk-annotation-save-and-quit): Ditto.
(skk-annotation-show-message): Do not insert ANNOTATION. Do not
sit for a second.
(skk-annotation-last-word-1): Call FUNCTION all okuri ari
candidates that are the same word and has different okurigana.
Set BEG and END markers respectively and set such markers to nil
after FUNCTION is called.
* skk-vars.el (skk-annotation): New group.
(skk-annotation-buffer): New internal constants.
(skk-annotation-function): New user variable.
(skk-annotation-mode-hook): Ditto.
(skk-annotation-show-message): New user option.
(skk-annotation-mode-map): New keymap.
(skk-annotation-original-window-configuration): New internal
variable.
(skk-annotation-mode): Ditto.
* experimental/skk-annotation.el: Require `skk-macs' and
`skk-vars'.
(skk-annotation-insert): New inline function.
(skk-annotation-quote-1): Ditto.
(skk-annotation-show): Rename to `skk-annotation-show-buffer'.
(skk-annotation-show): New function.
(skk-annotation-show-1): Ditto.
(skk-annotation-show-message): Ditto.
(skk-annotation-last-word-1): Ditto.
(skk-annotation-add): New command.
(skk-annotation-save-and-quit): Ditto.
(skk-annotation-remove): Ditto.
(skk-annotation-quote): Ditto.
2000-10-27 Mikio Nakajima <[email protected]>
* SKK-MK (SKK_MODULES): Add skk-annotation.
* skk-vars.el (skk-show-annotation): New user option.
* skk-jisx0213.el: Require `skk-macs' and `skk-vars'.
* skk.el (skk-quote-char): Quote ";".
(skk-insert-new-word): Divide WORD into two pieace, real WORD and
ANNOTATION and call `skk-annotation-show' if `skk-show-annotation'
is non-nil.
* experimental/skk-annotation.el: New experimental program.
2000-10-26 Tetsuo Tsukamoto <[email protected]>
* READMEs/FAQ.txt (Emacs 20 に SKK 9.6 がインストールできません。,
全く漢字が出てきません。, チュートリアルが起動できません。, スペー
スを押しても変換できません。): New questions.
* READMEs/NEWS: Add description.
* missing, mkinstalldirs: No longer in the repository.
2000-10-25 Mikio Nakajima <[email protected]>
* skk-vars.el (skk-coding-system-alist): Define "euc" and "ujis"
for euc-jisx0213, "sjis" for shift_jisx0213 and "jis" for
iso-2022-jp-3-compatible if emacs has a feature 'jisx0213.
(skk-code-n1-max): Set 254 if emacs has a feature 'jisx0213.
(skk-kcode-charset): Set 'japanese-jisx0213-1 if emacs has a
feature 'jisx0213.
* skk-kakasi.el: Update Takahashi-san's email address and
description about a ftp site to get kakasi.
* skk-lookup.el (skk-lookup-get-method): Use `skk-lookup-get-1'.
(skk-lookup-get-1): Simplified slightly.
2000-10-25 Tetsuo Tsukamoto <[email protected]>
* READMES/FAQ.txt (左手の小指を SHIFT で酷使したくありません。):
New question.
2000-10-25 Mikio Nakajima <[email protected]>
* skk-vars.el (skk-lookup-option-alist): Bug fixed.
2000-10-25 Tetsuo Tsukamoto <[email protected]>
* skk-vars.el (skk-lookup-option-alist): Bug fixed.
2000-10-24 Mikio Nakajima <[email protected]>
* skk-vars.el (skk-lookup-option-alist): Change 6th element regexp
to cons cell and defcustom type accordingly.
Add new element 7th and defcustom type accordingly.
Add new lists of which headers are "KOUJIEN", "KOJIEN" and "KOKUGO"
(skk-lookup-default-option-list): Change 5th element regexp to
cons cell and defcustom type accordingly.
Add new element 6th and defcustom type accordingly.
* skk-lookup.el (skk-lookup-get-1): New inline function.
(skk-lookup-get-cleanup-regexp): Ditto.
(skk-lookup-get-nonsearch-sex): Use `skk-lookup-get-1'.
(skk-lookup-get-pickup-regexp): Ditto.
(skk-lookup-get-split-regexp): Ditto.
(skk-lookup-process-heading): Use cdr part of 6th element of
`skk-lookup-option-alist' or 5th element of
`skk-lookup-default-option-alist' in order to get a matched
string.
Remove unnecessary strings from CANDIDATES-STRING by using 7th
element of `skk-lookup-option-alist' or 6th element of
`skk-lookup-default-option-alist'.
* skk-kcode.el (skk-input-by-code-or-menu): Use
`match-string-no-properties' instead of `match-string'.
2000-10-22 Mikio Nakajima <[email protected]>
* doc/skk-faq.texi ([Q.1-4] SKK はどんなオペレーティングシステムで使えますか?):
* skk.el (skk-abbrev-comma): Bug fixed.
* ccc.el (ccc-defadvice): Check if FUNCTION is fboundp or not.
Fixed warning message.
* skk-macs.el (skk-defadvice): Ditto.
2000-10-21 Mikio Nakajima <[email protected]>
* ccc.el (ccc-defadvice): Delete interactive call from advice
definition if trying to add an advice to subr/non-command.
* skk-macs.el (skk-defadvice): Ditto.
* skk.el (keyboard-quit): Use `skk-defadvice' instead of
`defadvice'.
(abort-recursive-edit): Ditto.
(newline): Ditto.
(newline-and-indent): Ditto.
(exit-minibuffer): Ditto.
(undo): Ditto.
(kill-buffer): Ditto.
(save-buffers-kill-emacs): Ditto.
(minibuffer-keyboard-quit): Ditto.
* skk-cursor.el (minibuffer-keyboard-quit): Use `skk-defadvice'
instead of `defadvice'.
* skk-jisx0201.el (newline): Ditto.
(newline-and-indent): Ditto.
(exit-minibuffer): Ditto.
* skk-tut.el (kill-buffer): Ditto.
(other-frame): Ditto.
(save-buffers-kill-emacs): Ditto.
* skk-viper.el (read-from-minibuffer): Ditto.
* skk-develop.el: Add `skk-defadvice' regexp for hilit19 and
font-lock.
2000-10-20 Tetsuo Tsukamoto <[email protected]>
* READMEs/NEWS: Add description about leim-list.el, etc.
* skk-setup.el.in (isearch-message-prefix): Move the advice
* skk-isearch.el: to here.
(skk-isearch-delete-char): Update only the 2nd element of
`isearch-cmds'.
2000-10-19 Mikio Nakajima <[email protected]>
* ccc.el (ccc-defadvice): New macro.
* skk-macs.el (skk-defadvice): Ditto.
2000-10-19 Tsuyoshi AKIHO <[email protected]>
* READMEs/NEWS: 新機能や廃止された関数について加筆。
2000-10-19 Tetsuo Tsukamoto <[email protected]>
* skk-leim.el: In "auto-autoloads.el", require "skk-setup".
* skk-setup.el.in: Override "C-x C-j" under XEmacs.
* skk.el (skk-save-jisyo-original): Check if `skk-emacs-id-file'
exists.
2000-10-19 Tsuyoshi AKIHO <[email protected]>
* SKK-MK (SKK_LISPDIR): "make PREFIX=dir install" で PREFIX のと
おりに elisp がインストールされるように修正.
2000-10-18 Tetsuo Tsukamoto <[email protected]>
* ccc.el (ccc-apply): New macro.
(ccc-ads): New variable.
2000-10-18 Mikio Nakajima <[email protected]>
* READMEs/README.win: Move 「`MAKE.BAT'の編集とインストール
(Windows 95,98/NT)」 to header (change to non-section).
Section structer rearranged (change `****' section to `***', `***'
to `**' and `**' section to `*').
New sections 「* Windows 上で動くサーバについて」,「wskkserve」,
「 cygwin を利用してソースからコンパイルして利用する」,「script 言
語で実装されたサーバ」created.
2000-10-17 Mikio Nakajima <[email protected]>
* ccc.el: Apply Tsukamoto-san's patch Message-ID:
* READMEs/CVS_on_Windows: Typo fixed.
2000-10-16 Mikio Nakajima <[email protected]>
* READMEs/README.win (SKK95 (Windows 95/98/NT)): Remove the
sentence 「Windows 95 では上記の SKKIME が動作しないためこちらを使
用します。」. SKKIME98 now works on Windows 95 (using Winsock
version 1).
Updated the link to kmc.
(wskkserve): Merged into "skkserve on Windows".
(skkserve on Windows): Moved before the section "SKK on Windows".
* skk-develop.el (skk-submit-bug-report): Do not put out
skk-henkan-face information.
Dump variables `isearch-mode-hook' and `isearch-mode-end-hook'.
Use skk-exserv.el when `skk-exserv-list' is non-nil.
Use new `skk-version'.
* skk-abbrev.el: Require product and call product-provide for its
feature.
* skk-auto.el: Ditto.
* skk-comp.el: Ditto.
* skk-cursor.el: Ditto.
* skk-develop.el: Ditto.
* skk-gadget.el: Ditto.
* skk-isearch.el: Ditto.
* skk-jisx0201.el: Ditto.
* skk-jisx0213.el: Ditto.
* skk-kakasi.el: Ditto.
* skk-kcode.el: Ditto.
* skk-leim.el: Ditto.
* skk-look.el: Ditto.
* skk-lookup.el: Ditto.
* skk-macs.el: Ditto.
* skk-num.el: Ditto.
* skk-obsolete.el: Ditto.
* skk-server.el: Ditto.
* skk-tut.el: Ditto.
* skk-vars.el: Ditto.
* skk-viper.el: Ditto.
* skk-xm20_4.el: Ditto.
* skk.el: Ditto.
* experimental/skk-correct.el: Ditto.
* experimental/skk-dos.el: Ditto.
* experimental/skk-dcomp.el: Ditto.
* experimental/skk-study.el: Ditto.
* experimental/tut-code/skk-tutcode.el: Ditto.
* experimental/tut-code/skk-tutcdef.el: Ditto.
* experimental/skk-is-n.el: Ditto.
* experimental/skk-exserv.el: Ditto.
* experimental/skk-exsearch.el: Ditto.
* experimental/skk-e18.el: Ditto.
* experimental/dbm/skk-dbm.el: Ditto.
* experimental/rdbms/skk-rdbms.el: Ditto.
* SKK-MK (SKK_MODULES): Add `skk-version'.
* skk-tut.el (skktut-end-tutorial): Use
`(product-string-1 'skk-version t)' instead of `skk-branch-name'.
(kill-buffer): Specify original interactive spec.
(skk-tutorial): Check skk version using `product-version>='.
* skk-vars.el (skk-version): Removed.
(skk-major-version): Ditto.
(skk-minor-version): Ditto.
(skk-branch-name): Ditto.
(skk-codename): Ditto.
* skk.el (skk-version): Removed.
Check APEL version using `product-version>='.
(kill-buffer): Specify original interactive spec.
* ccc.el (buffer-local-frame-params-ad-targets): Removed.
Check a function if a subr that has an interactive spec when
adding advices, and put on a mirroring original interactive spec
to advice.
* skk-version.el: New file.
* skk-study.el: Move it back to experimental directory.
2000-10-15 Mikio Nakajima <[email protected]>
* skk.el (skk-toggle-characters): Hand 'vcontract to
`skk-katakana-region' as VCONTRACT argument .
2000-10-15 Tetsuo Tsukamoto <[email protected]>
* skk-cursor.el (skk-cursor-buffer-local-frame-params-ad-targets):
Add `skk-j-mode-on'.
(minibuffer-setup-hook): No longer call
`set-buffer-local-cursor-color' under FSF Emacs.
(skk-cursor-current-color): No longer check if `skk-jisx0201-mode'
is bound.
2000-10-13 Tetsuo Tsukamoto <[email protected]>
* skk-cursor.el: Changes for XEmacs.
(minibuffer-keyboard-quit): New advice.
(minibuffer-exit-hook): Call `set-face-property' in the
minibuffer.
* skk-macs.el (skk-emacs-type, skk-detect-emacs): Check the
feature `xemacs'.
2000-10-12 Tetsuo Tsukamoto <[email protected]>
* ccc.el (buffer-local-cursor-color-default,
buffer-local-foreground-color-default,
buffer-local-background-color-default): Check the feature
`xemacs'.
* skk-cursor.el: Ditto.
(minibuffer-setup-hook): Call `set-buffer-local-cursor-color'
under FSF Emacs.
* skk-gadget.el (skk-clock): Don't perform redisplay in `sit-for'.
* skk-isearch.el (skk-isearch-delete-char): Use `when'.
* skk-jisx0201.el (skk-jisx0201-insert, skk-toggle-katakana):
Don't call `skk-cursor-set-properly'. Call `set-face-property' or
`set-buffer-local-cursor-color' instead.
* skk-obsolete.el (skk-obsolete-function-alist): Don't check
`skk-set-cursor-color' and `skk-set-cursor-properly'.
* skk-vars.el (skk-emacs-type): Check the feature `xemacs'.
* skk.el (skk-setup-modeline): Don't use `mapcar'.
2000-10-08 Tetsuo Tsukamoto <[email protected]>
* skk.el (skk-count-jisyo-candidates): Use `default-directory'
instead of "~/".
Show "candidate" instead of "candidates" if `count' is 1.
2000-10-05 Tetsuo Tsukamoto <[email protected]>
* skk.el (skk-count-jisyo-candidates): Show "candidates", not
"entries".
(skk-count-jisyo-candidates-original): Don't search slashes in
midashi words.
2000-10-03 Mikio Nakajima <[email protected]>
* READMEs/FAQ.txt: Change filename description in end of filename
tag.
2000-10-02 Tetsuo Tsukamoto <[email protected]>
* skk-leim.el (locate-libraries, load-libraries): New functinos
from egg-util.el in Tamago 4.
* skk-setup.el.in: Load all `leim-list.el' files.
2000-10-02 Mikio Nakajima <[email protected]>
* skk-vars.el (skk-num-uniq): Check if `skk-num-type-alist' has
indexes 2 and 3 or 5.
* skk.el (skk-henkan-show-candidates): Use
`skk-henkan-list-filter' instead of `skk-num-uniq'.
Do not use `(skk-num-multiple-convert 7)'.
2000-10-01 Mikio Nakajima <[email protected]>
* skk-lookup.el: Require bitmap when running on MULE.
* SKK-MK (SKK_MODULES): Add skk-jisx0213 if available.
(SKK_DICTIONARIES): Add "SKK-JISYO.JIS2", "SKK-JISYO.JIS3_4",
"SKK-JISYO.pubdic+", "SKK-JISYO.edict", "SKK-JISYO.office.zipcode"
and "SKK-JISYO.zipcode".
* skk-jisx0213.el: New file.
* skk-vars.el (skk-jisx0213-prohibit): New user option.
* skk.el (skk-henkan): Use `skk-get-current-candidate-1'.
(skk-previous-candidate): Use new `skk-get-current-candidate'.
(skk-kakutei): Ditto.
(skk-purge-from-jisyo): Ditto.
(skk-henkan-show-candidates): Use `skk-num-multiple-convert'
instead of `skk-num-convert*7'.
(skk-get-current-candidate): New funcition.
(skk-henkan-1): Call `skk-search' until getting NEW-WORD even if skk-henkan-count is 0.
* skk-num.el (skk-num-convert-1): New subroutine.
(skk-num-process-user-minibuf-input): Removed.
(skk-num-convert): Call `skk-num-uniq' if type 4 numeric
conversion is done.
Abolish argument KEY.
Do not return CURRENT.
(skk-num-exp): Use `save-match-data'.
(skk-num-process-user-minibuf-input): Ditto.
(skk-num-convert*7): Removed.
(skk-num-multiple-convert): New function.
(skk-henkan-list-filter): New funcition.
* skk-macs.el (skk-get-current-candidate-simply): Abolish optional
argument NOCONV and renamed it to `skk-get-current-candidate-1'.
2000-09-29 Mikio Nakajima <[email protected]>
* READMEs/FAQ.txt: Fixed a description about 「検索する辞書を増や
したいのですが」.
Sync up with a description about 「Wnn でも Canna でも郵便番号辞書
が使えるけれど、SKK では使えないの ?」
* READMEs/FAQ.txt: Add a description about 「検索する辞書を増やし
たいのですが」.
* READMEs/skk-faq.txt: Rename to FAQ.txt.
2000-09-28 Tetsuo Tsukamoto <[email protected]>
* ptexinfmt.el: Sync with Wanderlust.
2000-09-27 Mikio Nakajima <[email protected]>
* Makefile: Change Maintainer to SKK Development Team.
* SKK-CFG: Ditto.
* SKK-MK: Ditto.
* ccc.el: Ditto.
* doc/skk.texi: Ditto.
* etc/SKK.tut.E: Ditto.
* etc/SKK.tut: Ditto.
* experimental/skk-correct.el: Ditto.
* experimental/skk-dcomp.el: Ditto.
* experimental/skk-dos.el: Ditto.
* experimental/skk-e18.el: Ditto.
* experimental/skk-exsearch.el: Ditto.
* experimental/skk-exserv.el: Ditto.
* experimental/skk-is-n.el: Ditto.
* experimental/tut-code/skk-def.el: Ditto.
* experimental/tut-code/skk-tutcode.el: Ditto.
* make.bat: Ditto.
* skk-abbrev.el: Ditto.
* skk-auto.el: Ditto.
* skk-comp.el: Ditto.
* skk-cursor.el: Ditto.
* skk-develop.el: Ditto.
* skk-gadget.el: Ditto.
* skk-isearch.el: Ditto.
* skk-jisx0201.el: Ditto.
* skk-kakasi.el: Ditto.
* skk-kcode.el: Ditto.
* skk-leim.el: Ditto.
* skk-look.el: Ditto.
* skk-lookup.el: Ditto.
* skk-num.el: Ditto.
* skk-obsolete.el: Ditto.
* skk-server.el: Ditto.
* skk-setup.el.in: Ditto.
* skk-study.el: Ditto.
* skk-tut.el: Ditto.
* skk-vars.el: Ditto.
* skk-viper.el: Ditto.
* skk-xm20_4.el: Ditto.
* skk.el: Ditto.
* tinyinstall.el: Ditto.
* vip.el: Ditto.
2000-09-26 Tetsuo Tsukamoto <[email protected]>
* skk-num.el (skk-num-type3-kanji-1, skk-num-type5-kanji-1): Don't
miss "万" {"萬"}, "億", "兆", "京".
2000-09-25 Mikio Nakajima <[email protected]>
* READMEs/skk-faq.txt: Update a description about how to get
skk-tools.
2000-09-25 Shuhei KOBAYASHI <[email protected]>
* skk-num.el: Eliminate CL dependency.
(skk-num-compute-henkan-key, skk-num-convert): Expand `setf'
to `setcar'/`nthcdr' pair.
* skk.el: (skk-insert, skk-previous-candidate):
Fix interactive spec.
2000-09-25 Tetsuo Tsukamoto <[email protected]>
* ptexinfmt.el: Sync with Wanderlust.
2000-09-22 Tetsuo Tsukamoto <[email protected]>
* READMEs/CVS_00readme: Update for CVS 1.11.
2000-09-18 Tetsuo Tsukamoto <[email protected]>
* Makefile (package): Call `SKK-MK-compile-package'.
* SKK-MK (SKK-MK-compile-package,
SKK-MK-generate-autoloads-el-package): New functions.
(SKK-MK-install-package): Call `SKK-MK-compile-package'.
2000-09-17 Mikio Nakajima <[email protected]>
* skk-vars.el: Grouping by function and filename.
(skk-custom-by-function): New group.
(skk-custom-by-filename): Ditto.
(skk-use-look): Doc sync up with READMEs/skk-faq.txt.
(skk-kutouten-type): Use `defcustom' instead of `skk-deflocalvar'.
(skk-faces): Removed.
(skk-decoration): Ditto.
(skk-dictionary): Ditto.
(skk-filenames): Ditto.
(skk-hooks-and-functions): Ditto.
(skk-keybinds): Ditto.
(skk-okurigana): Ditto.
(skk-misc): Ditto.
(skk-abbrev): Ditto.
(skk-auto): Change its group to skk-custom-by-filename.
(skk-comp): Ditto.
(skk-cursor): Ditto.
(skk-gadget): Ditto.
(skk-isearch): Ditto.
(skk-jisx0201): Ditto.
(skk-kakasi): Ditto.
(skk-kcode): Ditto.
(skk-look): Ditto.
(skk-lookup): Ditto.
(skk-num): Ditto.
(skk-server): Ditto.
(skk-init-file): Use `defcustom' instead of `defvar'.
2000-09-17 Tetsuo Tsukamoto <[email protected]>
* skk-isearch.el: Add comments.
* skk-jisx0201.el: No real changes. Just a matter of appearance.
* skk-leim.el: Don't check for `register-input-method'.
2000-09-16 Tetsuo Tsukamoto <[email protected]>
* SKK-CFG: Rewrite.
2000-09-16 Mikio Nakajima <[email protected]>
* READMEs/README: Updated.
2000-09-15 Mikio Nakajima <[email protected]>
* READMEs/Contributors (Contributors): Change Akiho san's e-mail
address.
* doc/skk.texi (お願い): Change `[email protected]' to
2000-09-14 Tetsuo Tsukamoto <[email protected]>
* skk-isearch.el (skk-isearch-delete-char): Rewrite the last change.
2000-09-13 Tetsuo Tsukamoto <[email protected]>
* patch/e18/README.ja: Update.
* patch/e18/bytecomp-2.07/eval.c-e19.patch: <= eval.c.patch.
* patch/e18/bytecomp-2.07/eval_c-e18.patch: New file.
2000-09-13 Mikio Nakajima <[email protected]>
* patch/custom-1.9962.patch: Moved to e19 subdirectory.
2000-09-12 Tetsuo Tsukamoto <[email protected]>
* SKK-MK: Emacs 18 only. Work around for a bug in cl.el.
* experimental/skk-e18.el: Modify the error message.
* patch/e18: New repository.
* patch/e18/{README.ja, advice.el, cl.elc, cl_el-defsetf.patch}:
New files.
* patch/e18/bytecomp-2.07: New repository.
* patch/e18/bytecomp-2.07/{README.en, README.ja, byte-optimize.el,
bytecomp-runtime.el, bytecomp.el, bytecomp_el-mule-1_1_pl04.patch,
disass.el, eval.c.patch, make-docfile.c}: New files.
* skk-isearch.el (skk-isearch-find-keys-define): Simplify.
(skk-isearch-delete-char): Do not show white-space regular
expressions.
2000-09-12 Mikio Nakajima <[email protected]>
* READMEs/skk-faq.txt (http): Update.
* experimental/GUIDELINE: Update.
* experimental/tut-code/skk-def.el: Update comments for daredevil.
* experimental/tut-code/skk-tutcdef.el: Ditto.
* experimental/tut-code/skk-tutcode.el: Ditto.
2000-09-11 Tetsuo Tsukamoto <[email protected]>
* skk-isearch.el (skk-isearch-find-keys-define): Use `dolist'.
(skk-isearch-delete-char): Ditto.
(skk-isearch-setup-keymap): Use `do'.
(skk-isearch-search-string-regexp): Ditto.
* skk-vars.el (skk-num-list): Remove autoload cookie.
2000-09-11 Mikio Nakajima <[email protected]>
* Makefile (DATE): Do not use universal time.
(MD5): New variable.
(SNAPBASE): Ditto.
(TAR): Do not specify absolute path.
(tar): Rearrange for making archive in openlab.ring.gr.jp.
(snapshot): Ditto.
(clean): Remove files that match `.#*' (files which make by CVS
when it finds there are conflicts).
2000-09-10 Tetsuo Tsukamoto <[email protected]>
* READMEs/CVS_00readme: Use overlays instead of text properties.
* READMEs/CVS_on_Windows: Update.
* SKK-MK: Tiny bug fix for Emacs 18.
* skk-look.el (skk-look-ispell): Set VAR.
2000-09-10 Mikio Nakajima <[email protected]>
* Makefile (snapshot): Bug fixed.
* Makefile (tar): Modify to make archive in openlab.ring.gr.jp.
(snapshot): Ditto.
* READMEs/skk-faq.txt: Updated.
* skk-setup.el.in (isearch-mode-end-hook): Remove
skk-set-cursor-properly from the hook.
* doc/skk.texi (入力モードの一時変更): Typo fixed.
* skk-look.el (skk-look-ispell): Call `skk-look-1' for a word
originally handed to when ispell puts miss and guess out.
Slightly simplify condition.
Comment modified.
2000-09-09 Tetsuo Tsukamoto <[email protected]>
* Makefile (package): New target.
* SKK-MK (SKK-MK-running-xemacs): Abolish. Check the feature
xemacs instead.
(SKK_INFOS): Abolish. Stop guessing how many files resulting
info will be split into.
(SKK_INFO): New variable.
(PACKAGE_DATADIR): <= `SKK_PACKAGE_DATADIR'.
(PACKAGE_LISPDIR): <= `SKK_PACKAGE_LISPDIR'
(SKK_PACKAGE_NOT_USE): Abolish.
(SKK-MK-install-package): Use `SKK-MK-compile'.
(SKK-MK-generate-autoloads-el): Modify for XEmacs.
* skk-look.el (skk-look-ispell): Use the original word as well as
misses and guesses.
2000-09-09 Mikio Nakajima <[email protected]>
* skk-look.el (skk-look-ispell): Call `skk-look-1' for a word
originally handed to when ispell recognize spelling of WORD is
right.
* experimental/skk-exsearch.el (search-engine): Do not put out
originally handed word.
2000-09-09 Tetsuo Tsukamoto <[email protected]>
* READMEs/CVS_00readme: Update.
* skk-cursor.el (skk-mode-hook): Call `skk-mode-once-again'.
* skk-vars.el (skk-coding-system-alist): sjis => shift_jis.
* skk.el (skk-henkan-show-candidate-subr): If the selected frame
has 2 or more windows, delete other windows.
If point is not visible in the selected window, put point in the
center of the window.
2000-09-09 Mikio Nakajima <[email protected]>
* experimental/skk-cursor2.el: Merged skk-cursor2 and skk-cursor3
into skk-cursor.el.
* experimental/skk-cursor3.el: Ditto.
* skk-cursor.el: Ditto.
* SKK-MK (SKK_MODULES): Remove skk-cursor2 and skk-cursor3.
Add ccc if FSF Emacs is running.
(SKK_DAREDEVIL_NOT_USE): Add `skk-cursor2' and `skk-cursor3'.
* experimental/ccc.el (ccc-before-update-function): Removed.
(update-buffer-local-frame-params): Do not call
`ccc-before-update-function'.
(buffer-local-cursor-color-default): Bug fixed.
(buffer-local-foreground-color-default): Ditto.
(buffer-local-background-color-default): Ditto.
* experimental/skk-cursor2.el: Use `set-buffer-local-cursor-color'
for advice of each element of
`skk-cursor2-buffer-local-frame-params-ad-targets'.
Do not set `ccc-before-update-function'.
* skk-look.el (skk-look): Typo fixed.
* skk-viper.el (skk-cursor-set-properly): Removed advice.
(skk-cursor-current-color):
(read-from-minibuffer): Add `update-buffer-local-frame-params' to
`minibuffer-setup-hook' instead of `skk-cursor-setup-minibuffer'.
2000-09-08 Mikio Nakajima <[email protected]>
* skk-look.el (skk-look-1): Do not put out originally handed word.
(skk-look-ispell): Call look command by each candidate put out by
ispell.
Set symbol `error' to POSS if ispell-parse-output returns nil (and
make a error message if POSS is equal to symbol `error'.
(skk-look): Do not union lists made by `skk-look-1' and
`skk-look-ispell'.
(skk-look-completion): Ditto.
Do not remove `skk-look-completion-words'
from a list made by `skk-look-1' or `skk-look-ipell' (as it is
removed already).
2000-09-07 Tetsuo Tsukamoto <[email protected]>
* Makefile (set_jisyo): New variable.
* SKK-MK (SKK_SET_JISYO): New variable.
(SKK-MK-install): Set `skk-large-jisyo' if `SKK_SET_JISYO' is
non-nil.
(SKk-MK-install-package): Ditto.
* skk-vars.el (skk): Place this group under "Mule" and "Leim".
2000-09-07 Mikio Nakajima <[email protected]>
* skk-look.el (skk-look-ispell): Return not only miss but also
guess.
2000-09-07 Tetsuo Tsukamoto <[email protected]>
* skk-look.el (skk-look): Bug fixed.
(skk-look-ispell): Ditto.
2000-09-06 Tetsuo Tsukamoto <[email protected]>
* SKK-MK (SKK-MK-server-installed-p): New function.
(SKK-MK-install): Don't set `skk-large-jisyo' if a local server is
found.
(SKk-MK-install-package): Ditto.
* skk-isearch.el (skk-isearch-mode-setup): Don't call
`toggle-input-method' so that the SKK status is preserverd.
* skk-setup.el.in (skk-aux-large-jisyo): Use @AUXDIC@ instead of
@DIC@.
* skk-vars.el (skk-look-use-ispell): Check if ispell.el is installed.
2000-09-06 Mikio Nakajima <[email protected]>
* READMEs/MEMO.txt: Add some idea.
* READMEs/CVS_digest: Typo fixed.
Add description about pySKK.
2000-09-06 Tetsuo Tsukamoto <[email protected]>
* skk-leim.el (skk-leim-exit-from-minibuffer): New function.
(skk-activate, skk-auto-fill-activate): In minibuffer, add
`skk-leim-exit-from-minibuffer' to `minibuffer-exit-hook'.
2000-09-04 Tetsuo Tsukamoto <[email protected]>
* SKK-MK: Under Emacs 18, load bytecomp-runtime.el if possible.
* experimental/nicola: New repository. Import
NICOLA-DDSKK. ChangeLog files in this repository will show
details.
* skk-cursor.el (execute-extended-command): Advise this function
under XEmacs only.
* skk-isearch.el (skk-isearch-mode-setup): Activate input method
in the working buffer, if `current-input-method' is
japanese-skk{-auto-fill}.
(skk-isearch-mode-cleanup): Inactivate input method in the working
buffer, if `default-input-method' is japanese-skk{-auto-fill}.
(skk-isearch-find-keys-define): Don't overwrite the keymaps for
prefix keys.
(skk-isearch-setup-keymap): Keys for `toggle-input-method' call
`skk-isearch-skk-mode', if `default-input-method' is
japanese-skk{-auto-fill}.
(skk-isearch-skk-mode): Add an autoload cookie.
* skk-leim.el: Now don't set `current-input-method-title'. Always
show `skk-input-mode-string'.
* skk-setup.el.in (isearch-mode-end-hook): Call
`skk-isearch-mode-cleanup' if the feature skk-isearch is provided.
(isearch-mode-map): Make sure C-\ is bound to
`isearch-toggle-input-method'.
(isearch-toggle-input-method): New advice. Invoke skk-isearch if
`default-input-method' is japanese-skk{-auto-fill}.
(isearch-message-prefix): Don't show `current-input-method-title'
if `default-input-method' is japanese-skk{-auto-fill}.
2000-09-04 Mikio Nakajima <[email protected]>
* skk-look.el (skk-look-ispell): New function.
(skk-look-completion): Use `skk-look-ispell' if
`skk-look-use-ispell' is non-nil.
(skk-look): Ditto.
* skk-vars.el (skk-look-use-ispell): New user option.
2000-08-31 Tetsuo Tsukamoto <[email protected]>
* SKK-MK: Under Emacs 18, Use `if' instead of `when' where it is
not yet defined.
* ptexinfmt.el: Sync with Wanderlust.
* skk-jisx0201.el (skk-toggle-katakana): Set the extent for
`skk-input-mode-string' under XEmacs.
* skk-macs.el (skk-mode-off, skk-j-mode-on, skk-latin-mode-on,
skk-jisx0208-latin-mode-on, skk-abbrev-mode-on): Ditto.
* skk.el: Changes for XEmacs --
(skk-mode): Create extents for `skk-input-mode-string'.
(skk-setup-modeline): If `skk-status-indicator' is left, Add an
extent to the modeline format, as well as `skk-input-mode-string'.
2000-08-28 Tetsuo Tsukamoto <[email protected]>
* SKK-MK (SKK-MK-compile): Require cl for Emacs 18.
* experimental/skk-e18.el: Don't require cl here.
* skk-kcode.el (skk-make-char): Typo.
2000-08-27 Tetsuo Tsukamoto <[email protected]>
* experimental/skk-e18.el (call-process): Work around for Emacs
18.55.
* ptexinfmt.el: New file imported from Wanderlust.
* SKK-MK (SKK-MK-texinfo-format): Require ptexinfmt.
(SKK-MK-compile): Work around for Emacs 18.55.
* skk-num.el (skk-num-convert): Work around for Emacs 18.55.
2000-08-26 Tetsuo Tsukamoto <[email protected]>
* doc/skk.texi (■モードにおける文字変換, 数字や記号文字の入力,
etc):Update for SKK 10 and lator.
(SKKIME): New section.
2000-08-25 Tetsuo Tsukamoto <[email protected]>
* experimental/skk-dos.el (skk-save-jisyo): Advise to preserve
file modes.
2000-08-23 Tetsuo Tsukamoto <[email protected]>
* experimental/skk-dos.el: Work around for Demacs 1.2.0.
* skk-vars.el (skk-isearch-switch): Default to nil.
* skk.el (comint-send-input): New advice.
(skk-make-temp-jisyo): Use short file name under MS-DOS.
(skk-make-temp-file): Expand DIR before passing it to
`expand-file-name'.
2000-08-20 Tetsuo Tsukamoto <[email protected]>
* skk-isearch.el (skk-isearch-delete-char): Call `skk-kakutei' if
point in the working buffer is the same as {or less than}
`skk-henkan-start-point'.
2000-08-19 Tetsuo Tsukamoto <[email protected]>
* READMEs/CVS_00readme: Update.
2000-08-19 YOSHIZAWA Masahiro <[email protected]>
* skk.el (skk-okurigana-prefix): Fix the condition description.
2000-08-18 Tetsuo Tsukamoto <[email protected]>
* READMEs/PROPOSAL: tm ML => APEL ML.
* skk.el (skk-okurigana-prefix): Don't use `skk-char-octet' under
Nemacs.
2000-08-16 Tetsuo Tsukamoto <[email protected]>
* SKK-MK (SKK-MK-generate-autoloads-el): Provide skk-autoloads.
* skk-cursor.el (skk-cursor-current-color): No longer check if
`skk-jisx0201-mode' is bound.
* skk-jisx0201.el: Move variables to skk-vars.el.
(skk-setup-modeline): No longer redefine this function.
* skk-vars.el (skk-use-jisx0201-input-method): New user option.
(skk-cursor-jisx0201-color, skk-jisx0201-mode-string,
skk-jisx0201-mode-map, skk-jisx0201-base-rule-tree,
skk-jisx0201-roman-rule-tree, skk-jisx0201-roman,
skk-jisx0201-current-rule-tree, skk-jisx0201-mode): From
skk-jisx0201.el.
* skk.el (skk-regularize): Require skk-jisx0201 if
`skk-use-jisx0201-input-method' is non-nil.
Require skk-kanagaki if `skk-use-kana-keyboard' is non-nil. --
in this function instead of `skk-mode'.
2000-08-16 Tetsuo Tsukamoto <[email protected]>
* SKK-MK (SKK-MK-generate-autoloads-el): Always generate autoloads
here.
2000-08-15 Tetsuo Tsukamoto <[email protected]>
* SKK-MK (SKK-MK-install,SKK-MK-generate-autoloads-el): if
$(EMACS) is Emacs 20 or lator, generate autoloads by
`update-autoloads-from-directories'.
Don't install leim-list.el for Emacs 19 or earlier.
(SKK_MODULES): Don't install skk-leim.el for Emacs 19 or earlier.
* skk-leim.el: Register input methods here.
(skk-activate, skk-auto-fill-activate): Advise
`skk-setup-modeline' to do nothing.
* skk-setup.el.in: Don't register input methods here.
2000-08-14 Tetsuo Tsukamoto <[email protected]>
* skk-jisx0201.el: Modify doc string.
2000-08-12 Tetsuo Tsukamoto <[email protected]>
* skk-gadget.el (skk-clock): Quit by any event.