-
Notifications
You must be signed in to change notification settings - Fork 42
/
ChangeLog.0
2240 lines (1636 loc) · 84.1 KB
/
ChangeLog.0
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
1998-12-30 Mikio Nakajima <[email protected]>
* lisp/skk-kakasi.el: Require path-util.el of Apel.
(skk-kakasi-command): Use `exec-installed-p'.
(skk-kakasi-region): Check if skk-kakasi-command is not null
variable.
* lisp/skk-kcode.el (skk-kcode-charset): Typo fixed.
1998-12-27 Mikio Nakajima <[email protected]>
* lisp/skk-foreword.el (skk-background-mode): Use `skk-emacs-type'.
* lisp/skk.el (skk-default-cursor-color, skk-coding-system-alist,
skk-hankaku-alist, minibuffer-eyboard-quit, skk-mode,
skk-kill-emacs-without-saving-jisyo,
skk-change-cursor-when-ovwrt): Use `skk-emacs-type'.
(skk-ovwrt-cursor-width): New user variable.
(skk-change-cursor-when-ovwrt): Use `skk-ovwrt-cursor-width'.
* lisp/skk-viper.el (skk-viper-normalize-map): Use
`skk-emacs-type'.
* lisp/skk-tut.el (skktut-init-variables-alist,
skktut-enable-tutmap, skktut-next-answer-buffer): Use
`skk-emacs-type'.
* lisp/skk-server.el (skk-open-server): Use `skk-emacs-type'.
* experimental/rdbms/skk-rdbms.el (skk-rdbms-init): Use
`skk-emacs-type'.
* lisp/skk-kcode.el (skk-kcode-charset, skk-kcode-charset-list,
skk-display-code-for-char-at-point): Use `skk-emacs-type'.
* lisp/skk-isearch.el (skk-isearch-overriding-local-map):
(skk-isearch-mode-map): Use `skk-emacs-type'.
* experimental/skk-attr.el (skk-attr-save): Use `skk-emacs-type'.
* lisp/skk-foreword.el: (skk-xemacs, skk-mule3, skk-mule4,
skk-e20): Removed.
(skk-emacs-type): New internal constant.
* lisp/skk.el (skk-use-look): More doc.
(skk-kana-input): Apply patch from Kenji Yamashita
<[email protected]> as of Dec 18, 1998.
1998-12-25 Mikio Nakajima <[email protected]>
* lisp/skk.el: Apply patch from Murata Shuuichirou
<[email protected]> as of Dec 25, 1998 of which Message-ID:
1998-12-23 Mikio Nakajima <[email protected]>
* lisp/skk.el (skk-coding-system-alist): Set in case of
`skk-mule4'.
1998-12-22 Mikio Nakajima <[email protected]>
* lisp/skk-viper.el (skk-looking-at-jisx0208): Rename to
`skk-jisx0208-p'.
* lisp/skk-viper.el (viper-join-lines): Use `skk-jisx0208-p'
(Regexp "\\c" cannot be used on XEmacs).
1998-12-21 Mikio Nakajima <[email protected]>
* configure.in, jisyo-tools/Makefile.am:
* jisyo-tools/skkdic-expr.c: Apply patch from Takao KAWAMURA
<[email protected]> as of Dec 7, 1998.
* lisp/skk.el (skk-make-temp-file, skk-compute-henkan-lists,
skk-lisp-prog-p): Use `skk-str-ref' instead of `aref'.
* experimental/look/skk-look.el (skk-look-ignore-case): Set
default variable to `t'.
(skk-look-dictionary-order, skk-look-dictionary): New user
variable.
1998-12-20 Mikio Nakajima <[email protected]>
* lisp/skk.el (skk-del-char-with-pad): Use `=' to compare number.
1998-12-14 Tsukamoto Tetsuo <[email protected]>
* lisp/skk.el (skk-mode): Call `easy-menu-add' and
`easy-menu-remove' for `skk-menu' when necessary for XEmacs.
1998-12-07 Mikio Nakajima <[email protected]>
* experimental/look/skk-look.el (skk-look-1): Bind
`buffer-read-only' to nil.
1998-12-06 Mikio Nakajima <[email protected]>
* experimental/look/skk-look.el (skk-look-completion): Delete
words which are already stacked in `skk-completion-stack' from
`skk-look-completion-words'.
* jisyo-tools/skkdic-count.c (count_entry): Rename to
`count_words'. Output message `xxxx words' instead of `xxxx
entries'.
(main): Use `count_words'.
1998-12-05 Mikio Nakajima <[email protected]>
* experimental/look/skk-look.el (skk-look-1): New function. Take
core part of search engine from `skk-look'.
(skk-look): Use `skk-look-1'.
(skk-look-completion): New function.
* lisp/skk-comp.el (skk-completion-original): Use skk-look.el when
`skk-use-look' is non-nil.
* lisp/skk.el (skk-kakutei-save-and-init-variables): Initialize
`skk-look-completion-words' when `skk-use-look' is non-nil.
1998-12-03 Mikio Nakajima <[email protected]>
* experimental/skk-look.el (skk-look-ignore-case,
skk-look-use-alternate-dictionary, skk-look-termination-character,
skk-look-recursive-search, skk-look-expanded-word-only): New user
variable.
(skk-look): Handle `skk-look-ignore-case',
`skk-look-use-alternate-dictionary',
`skk-look-termination-character', `skk-look-recursive-search' and
`skk-look-expanded-word-only' options. Handle FILE-ERROR.
* experimental/rdbms/skk-rdbms.el (skk-rdbms-private-jisyo-table,
skk-rdbms-kakutei-jisyo-table, skk-rdbms-initial-jisyo-table): Use
function `user-login-name' instead of variable which has the same
name (XEmacs does not have such variable).
1998-12-02 Mikio Nakajima <[email protected]>
* lisp/skk.el (skk-use-look): Add doc string.
* experimental/skk-look.el: Require `skk-foreword.el' and
`skk-vars.el' and add `;;;###skk-autoload' cookies.
(skk-look): Use `call-process' instead of `call-process-region'.
(skk-look-command): Documented.
* lisp/skk-tut.el (skktut-init-variables-alist): Add
`skk-use-look' entry, remove `skk-num-load-hook' entry, and sort
by name of variable (alphabetical order).
1998-12-01 Mikio Nakajima <[email protected]>
* lisp/skk-look.el: New file.
* lisp/skk.el (skk-use-look): New user variable.
(skk-search): Change for `skk-look.el'.
(skk-regularize): Require skk-look.el when `skk-use-look' is
non-nil.
1998-11-30 Mikio Nakajima <[email protected]>
* lisp/skk.el (skk-katakana-region, skk-hiragana-region,
skk-jisx0208-latin-region skk-latin-region): Do not use
`combine-after-change-calls'.
1998-11-29 Mikio Nakajima <[email protected]>
* lisp/skk-kcode.el: Apply patch from Murata Shuuichirou
<[email protected]> of which Message-ID is
1998-11-18 Hideki Sakurada <[email protected]>
* lisp/skk.el (skk-kana-input-search-function): Bug fixed.
1998-11-17 Mikio Nakajima <[email protected]>
* experimental/rdbms/skk-rdbms.el (skk-rdbms-search-jisyo-table,
skk-rdbms-update-jisyo): Enable numeric conversion.
* lisp/skk-foreword.el (skk-get-simply-current-candidate): Rename
to `skk-get-current-candidate-simply'.
1998-11-15 Mikio Nakajima <[email protected]>
* lisp/skk.el (skk-change-marker-to-white, skk-change-marker,
skk-set-henkan-point, skk-update-jisyo-original, skk-kana-input):
Not to use `combine-after-change-calls'.
(skk-insert): Enable lowercase + upppercase conversion.
(keyboard-quit, abort-recursive-edit, minibuffer-keyboard-quit
skk-delete-backward-char, skk-set-henkan-point, skk-start-henkan,
skk-set-henkan-point-subr, skk-*-henkan-1): Use `skk-get-prefix'
to check if `skk-prefix' is null string or not.
1998-11-14 Mikio Nakajima <[email protected]>
* Rearrange subdirectories for the official release of SKK 10 in
the near future.
* experimental/rdbms/skk-rdbms.el (skk-rdbms-stroke): New command.
* experimental/rdbms/sql/createtbl.sql: Not to create index on
yomi. PostgreSQL does not use indexes when `order by' is used.
1998-11-11 TSUMURA Tomoaki <[email protected]>
* skk.el (skk-katakana-region, skk-hiragana-region): Bug fixed.
1998-11-10 SAKAI Kiyotaka <[email protected]>
* skk.el (skk-get-jisyo-buffer): Not to set
coding-system-for-read.
1998-11-09 Mikio Nakajima <[email protected]>
* skk-rdbms.el (skk-rdbms-restore-private-jisyo): New command.
1998-11-08 Mikio Nakajima <[email protected]>
* make-vars.el (skk-files): Add `skk-obsolete.el' to the list.
* skk.el (abort-recursive-edit): Remove before class advice.
(minibuffer-exit-hook): Remove local hook `skk-pre-command' from
`pre-command-hook'.
(skk-remove-minibuffer-setup-hook): New function.
(minibuffer-exit-hook, abort-recursive-edit,
minibuffer-keyboad-quit): Use `skk-remove-minibuffer-setup-hook'.
(abort-recursive-edit, minibuffer-keyboad-quit): Call
`skk-set-cursor-properly' before doing anything else.
(save-buffers-kill-emacs): Revive advice.
(skk-kill-emacs-without-saving-jisyo): Disable advice of
`save-buffers-kill-emacs'.
* skk-tut.el (skktut-ascii-mode-map): Rename to
`skktut-latin-mode-map'.
(skktut-init-variables-alist): Remove `skk-num-type-list',
`skk-numeric-conversion-float-num' and `skk-uniq-numerals' from
alist.
1998-11-07 Mikio Nakajima <[email protected]>
* skk-obsolete.el: New file.
* skk-rdbms.el (skk-rdbms-SQL-search-completion-word-command):
Add DISTINCT to SQL command.
(skk-rdbms-SQL-search-completion-word-command): Use
`skk-rdbms-SQL-wildcard'.
* skk-num.el (skk-numeric-convert): Use `skk-splice-in' instead of
an obsolete function `skk-middle-list'.
* skk-isearch.el (skk-isearch-skk-hirakana-mode-p,
skk-isearch-skk-turn-on-hirakana-mode): Rename to
`skk-isearch-skk-hiragana-mode-p' and
`skk-isearch-skk-turn-on-hiragana-mode' respectively.
* skk.el (skk-ascii-cursor-color, skk-ascii-mode-string,
skk-ascii-mode-map, skk-ascii-mode, skk-ascii-region,
skk-ascii-henkan): Rename to `skk-ascii-cursor-color',
`skk-latin-mode-string', `skk-latin-mode-map', `skk-latin-mode',
`skk-latin-region' and `skk-latin-henkan' respectively.
(skk-hirakana-mode-string, skk-hirakana-cursor-color): Rename to
`skk-hirakana-mode-string' and `skk-hirakana-cursor-color'
respectively.
* skk-foreword.el (skk-erase-prefix): Add check if `skk-prefix' is
not null string.
(skk-ascii-mode-on): Rename to `skk-latin-mode-on'.
(combine-after-change-execute, combine-after-change-calls):
Remove.
* sql/createtbl.sql: Bug fixed.
1998-11-03 Mikio Nakajima <[email protected]>
* skk-rdbms.el (skk-rdbms-public-jisyo-has-entry-p):
Rename to `skk-rdbms-public-jisyo-to-be-searched'.
* skk.el (skk-try-completion-key, skk-next-completion-key,
skk-previous-completion-key, skk-start-henkan-key): Rename to
`skk-try-completion-char', `skk-next-completion-char',
`skk-previous-completion-char' and `skk-start-henkan-char'
respectively and assinged relative characters to them.
(keyboard-quit, abort-recursive-edit): Bug fixed in their advices.
(skk-submit-bug-report): Bug fixed.
(skk-j-mode-map): Not define `skk-previous-candidate' to be able
to define `skk-previous-candidate-char' in `skk-init-file'.
(skk-mode): Define `skk-previous-candidate' key bind in
`skk-j-mode-map'.
(skk-zenkaku-mode, skk-zenkaku-mode-on, skk-zenkaku-insert,
skk-zenkaku-region, skk-zenkaku-henkan, skk-zenkaku-mode-string,
skk-zenkaku-vector, skk-zenkaku-cursor-color,
skk-zenkaku-mode-map, skk-default-zenkaku-vector):
Rename to `skk-jisx0208-latin-mode', `skk-jisx0208-latin-mode-on',
`skk-jisx0208-latin-insert', `skk-jisx0208-latin-region',
`skk-jisx0208-latin-henkan', `skk-jisx0208-latin-mode-string',
`skk-jisx0208-latin-vector', `skk-jisx0208-latin-cursor-color',
`skk-jisx0208-latin-mode-map' and
`skk-default-jisx0208-latin-vector' respectively.
(skk-setup-minibuffer) : Invoke `skk-jisx0208-latin-mode-on' when
`skk-minibuffer-origin-mode' is equal to `jisx0208-latin'.
(skk-toggle-kana): Invoke `skk-jisx0208-latin-henkan' when CHAR is
equal to `jisx0208-latin'.
(skk-what-char-type): Return `jisx0208-latin' symbol when looking
at jisx0208 latin characters.
(skk-backward-and-set-henkan-point-1): Skip jisx0208 characters
when TYPE is equal to `jisx0208-latin' symbol.
(minibuffer-exit-hook): Remove a lambda which adds `skk-pre-command' to
`pre-command-hook' as a local hook.
(skk-start-henkan): Simply call `skk-kana-cleanup' instead of
processing unfixed skk-prefix internally.
(skk-public-jisyo-has-entry-p-function): Rename to
`skk-public-jisyo-to-be-searched-function'.
(skk-public-jisyo-has-entry-p-original): Rename to
`skk-public-jisyo-to-be-searched-original'.
* skk-foreword.el (skk-current-insert-mode): Return
`jisx0208-latin' symbol when `skk-jisx0208-latin-mode' is non-nil.
(skk-alpha-char-p): Rename to `skk-ascii-char-p'.
(skk-erase-prefix): Slightly simplify.
* skk-isearch.el (skk-isearch-skk-jix0208-latin-mode-p): Rename
to `skk-isearch-skk-jisx0208-latin-mode-p'. Maybe it's typo.
^
(skk-isearch-newline): Use `skk-isearch-turn-on-skk-mode'.
1998-11-02 Mikio Nakajima <[email protected]>
* skk-rdbms.el (skk-rdbms-SQL-search-kakutei-jisyo-command): Remove.
(skk-rdbms-SQL-search-publuc-jisyo-command): Rename to
`skk-rdbms-SQL-search-jisyo-command'.
1998-11-01 Mikio Nakajima <[email protected]>
* skk-rdbms.el (skk-rdbms-SQL-delete-command,
skk-rdbms-SQL-regexp-delete-command): Check OKURIARI field also.
(skk-rdbms-searching-table, skk-rdbms-cutoff-output-function,
skk-rdbms-cutoff-output-function-4): Remove.
(skk-rdbms-cutoff-output-function-2,
skk-rdbms-cutoff-output-function-3): Rename to
`skk-rdbms-cutoff-output-function' and
`skk-rdbms-cutoff-output-function-2' respectively.
(skk-rdbms-init): Message verbosely.
(skk-rdbms-search-jisyo-table,
skk-rdbms-search-kakutei-jisyo-table, skk-rdbms-sahen-search-1,
skk-rdbms-busyu-henkan): Use new
`skk-rdbms-cutoff-output-function' and simplify.
(skk-rdbms-count-jisyo-candidates): Use new
`skk-rdbms-cutoff-output-function-2'.
* awk/dicconv.awk: Bug fixed.
1998-10-31 Mikio Nakajima <[email protected]>
* skk-rdbms.el (skk-rdbms-save-jisyo-function): Check whether
`skk-rdbms-private-jisyo-dump' exists or not.
* skk-kakasi.el (skk-use-kakasi): Set Default value to `t' simply.
(skk-kakasi-command): New user variable.
(skk-kakasi-region): Use `skk-kakasi-command'.
(skk-gyakubiki-region, skk-gyakubiki-katakana-region,
skk-hurigana-region, skk-hurigana-katakana-region,
skk-romaji-region): Use `insert-and-inherit' instead of `insert'.
* skk-gadget.el (skk-current-date): Use `=' to compare number.
Use `?\040' instead of `32'.
1998-10-30 Mikio Nakajima <[email protected]>
* skk-isearch.el (skk-isearch-delete-char): Call
`delete-backward-char' if skk-prefix is null string otherwise
`skk-erase-prefix'.
1998-10-29 TSUMURA Tomoaki <[email protected]>
* skk.el (skk-compute-henkan-key2): Bug fixed.
1998-10-28 TSUMURA Tomoaki <[email protected]>
* skk.el (skk-hiragana-to-katakana, skk-katakana-to-hiragana): Use
`mapconcat' for Emacs 19 compatibility.
* skk.el (skk-katakana-region, skk-hiragana-region): Bug fixed.
1998-10-28 Mikio Nakajima <[email protected]>
* skk-foreword.el (defun-soft, cancel-undo-boundary,
skk-character-to-event, skk-event-to-character): Remove.
* skk-tut.el (skktut-next-answer-buffer): Use `end-open' property
for XEmacs.
1998-10-27 Mikio Nakajima <[email protected]>
* skk-auto.el, skk-comp.el, skk-foreword.el, skk-isearch.el,
skk-kakasi.el, skk-kcode.el, skk-rdbms.el, skk-server.el,
skk-tut.el, skk-vip.el, skk-viper.el, skk.el: APEL (A Portable
Emacs Library) 9.7 or later required. Many portion of functions
and macros which emulate Emacsen other than one uses are now given
to APEL 9.7. APEL 9.7 is available from;
ftp://ftp.jaist.ac.jp/pub/GNU/elisp/apel/
* skk.el (skk-setup-delete-backward-char): Search
`backward-or-forward-delete-char' binding for XEmacs.
(skk-compute-henkan-lists): Use `split-string' in subr.el of Emacs
20 instead of `string-split' in string.el of Elib.
(skk-create-file): Bug fixed.
1998-10-25 Mikio Nakajima <[email protected]>
* skk.el (skk-create-file): Message English when
`skk-japanese-message-and-error' is nil, otherwise Japanese.
1998-10-24 Mikio Nakajima <[email protected]>
* skk.el (skk-insert-new-word): Use `skk-functionp'.
(skk-insert-new-word, skk-katakana-region, skk-hiragana-region,
skk-zenkaku-region, skk-ascii-region, skk-update-jisyo-original):
Use `combine-after-change-calls' macro.
(skk-middle-list): Rename to `skk-splice-in'.
(skk-delete-henkan-markers): Remove `combine-after-change-calls'
macro.
* skk-isearch.el (skk-isearch-mode-setup,
skk-isearch-mode-cleanup): Mark with `;;;###skk-autoload' labels.
(skk-isearch-overriding-local-map): Set `overriding-local-map' for
XEmacs 21.2 or later.
* skk-foreword.el: Add `font-lock-warnign-face' to
`;;;###skk-autoload' cookie.
(skk-pre-command): Bug fixed.
(skk-unread-event): Move to top level for common use.
(skk-char-octet): Simplify.
* skk-rdbms.el (skk-rdbms-okuri-search): Bug fixed.
(skk-rdbms-run-SQL-command): Use `combine-after-change-calls'
macro.
* skk-kcode.el (skk-kcode-charset): Declare with `defvar' and make
it user variable.
1998-10-23 Makoto MATSUSHITA <[email protected]>
* skk-server.el (skkserv-process): New internal variable.
(skk-open-network-stream): Call `process-kill-without-query' for
`skkserv-process'.
1998-10-23 Mikio Nakajima <[email protected]>
* skk-rdbms.el (skk-rdbms-okuri-search): Speed up.
* skk.el (skk-hiragana-to-katakana, skk-katakana-to-hiragana): New
functions.
(skk-katakana-region): Use `skk-hiragana-to-katakana'.
(skk-hiragana-region): Use `skk-katakana-to-hiragana'.
1998-10-22 Mikio Nakajima <[email protected]>
* skk-foreword.el: Apply patch from Murata Shuuichirou
<[email protected]> as of Oct 22, 1998 of which message-iD is
1998-10-22 <[email protected]>
* skk.el (skk-set-henkan-point): Bug fixed.
1998-10-21 Mikio Nakajima <[email protected]>
* skk-tut.el (skktut-error-map): Remove.
(skktut-enable-tutmap): Not to `set-buffer' to
`skktut-answer-buffer'.
(skktut-next-answer-buffer): If question is last one, do not
insert `; to skip this question `C-x s' *' text.
1998-10-20 Mikio Nakajima <[email protected]>
* skk-rdbms.el (skk-rdbms-completion): Call `skk-kana-cleanup'
first.
* skk-server.el (skk-open-server-1): Use `=' to compare number.
(skk-servers-list): Improve doc string.
(skk-network-open-status): Declare with `defconst'.
(skkserv-working-buffer): New constant.
(skk-server-version, skk-search-server-subr,
skk-open-network-stream): Use `skkserv-working-buffer'.
(skk-open-server-1): Do not call `skk-startup-server' when
`skk-server-prog' is nil.
* skk-tut.el (skktut-enable-tutmap): Use `setq-default' for
`minor-mode-map-alist' localized by Viper.
(skktut-original-buffer): Remove.
(skktut-disable-tutmap): Call `skk-viper-normalize-map' when
default value of skk-use-viper is non-nil.
(skktut-next-answer-buffer): Add `rear-nonsticky', `intangible'
and `read-only' text properties for answer buffer cookies.
(skktut-setup-question-buffer): Also bind tutorial commands in
`skktut-question-buffer'. Keep buffer-read-only t.
* skk.el (skk-henkan-show-candidates): Use `?\040' instead of
`? '.
(skk-submit-bug-report, skk-regularize,
skk-public-jisyo-has-entry-p): Not to refer to `skk-server-prog'
and "SKKSERV".
(skk-public-jisyo-has-entry-p-original): Not to refer to
`skk-server-prog'.
* skk-comp.el (skk-completion-original): Use `eq' and `?\040'
instead of `=' and `? '.
(skk-completion-original): Call `skk-kana-cleanup' first.
* skk-kcode.el : Apply patch from Murata Shuuichirou
<[email protected]> as of Oct 19, 1998 of which message-id is
(skk-input-by-code-or-menu-1): Use `?\040' instead of `? '.
(skk-kcode-charset): Declare by `defconst' instead of
`skk-deflocalvar'.
1998-10-19 Mikio Nakajima <[email protected]>
* skk.el (skk-public-jisyo-has-entry-p): Modify condition.
* skk-viper.el: Apply patch from Murata Shuuichirou
<[email protected]> as of Oct 19 1998 whose message-id is
* skk-comp.el (skk-completion-original): Use `=' instead of `eq'
for char.
1998-10-18 Mikio Nakajima <[email protected]>
* skk.el (skk-henkan-in-minibuff) : Use `skk-j-mode-on' instead of
`skk-setup-minibuffer'.
(minibuffer-exit-hook): Remove `skk-j-mode-on' from
`minibuffer-setup-hook'.
(skk-set-henkan-point): `TaSSi' --> 「達っし」, `TasSi' -> 「達し」
* skk-tut.el (skktut-init-variables-alist): Add
`skk-search-excluding-word-pattern-function'.
(skktut-tutorial-again, skktut-quit-tutorial): Rename
to `skk-tutorial-again' and `skk-tutorial-quit' respectively.
(skktut-disable-tutmap): Use `skk-viper-normalize-map' for Viper
users.
(skktut-original-buffer): New internal variable.
(skktut-pre-setup-tutorial): Set `skktut-original-buffer'.
(skktut-enable-advice, skktut-disable-advice): Not to use arg but
refer to `skktut-adviced-alist' directly.
(skktut-setup-working-buffer, skktut-setup-question-buffer): Call
`buffer-disable-undo'.
(kill-buffer): Not to use temporary variable.
(skktut-pre-setup-tutorial): Require skk-viper.el if
`skk-use-viper' is non-nil.
* skk-viper.el (skk-viper-normalize-map): New function (but only
named for lambda).
1998-10-17 Mikio Nakajima <[email protected]>
* skk-tut.el: Totally rewritten for SKK 10.46.
* skk-foreword.el (skk-current-insert-mode): New inline function.
* skk.el (skk-spy-origin-buffer-mode): Remove.
(skk-minibuffer-origin-mode): New internal variable.
(skk-major-version, skk-minor-version): New constants.
1998-10-13 Mikio Nakajima <[email protected]>
* skk-viper.el (viper-forward-word-kernel):
(viper-backward-word-kernel): Check by `skk-looking-at-jisx0208'.
* skk-foreword.el (skk-y-or-n-p, skk-yes-or-no-p): Allow &rest
argument.
* skk.el (skk-allow-spaces-newlines-and-tabs,
skk-rom-kana-base-rule-list, skk-rom-kana-rule-list,
skk-kana-input-search-function, skk-downcase-alist, skk-use-face,
skk-default-cursor-color, skk-hirakana-cursor-color,
skk-katakana-cursor-color, skk-zenkaku-cursor-color,
skk-abbrev-cursor-color, skk-auto-paren-string-alist,
skk-search-excluding-word-pattern-function, skk-kutouten-type,
skk-submit-bug-report): Modify their doc strings.
(skk-henkan-show-candidates): Put in error check.
(skk-submit-bug-report): Bug fixed.
(skk-regularize): New function.
(skk-mode): Use `skk-regularize'.
(skk-restart): New command.
(skk-setup-delete-selection-mode): Add `skk-current-kuten' and
`skk-current-touten'.
(skk-start-henkan): Apply patch from SAKAI Kiyotaka
<[email protected]> whose message-Id is
(skk-rom-kana-rule-list): Doc fixed.
1998-10-12 Mikio Nakajima <[email protected]>
* skk-foreword.el (skk-kana-cleanup):
* skk.el (skk-auto-start-henkan-keyword-list,
skk-auto-start-henkan): Add `*' to their doc strings as user
variables.
(skk-kana-rom-vector): Modify its doc string.
1998-10-11 Mikio Nakajima <[email protected]>
* skk.el (skk-rom-kana-base-rule-list): Use `skk-current-kuten'
and `skk-current-touten'.
(skk-toggle-kutouten): New command.
(skk-current-kuten, skk-current-touten): New functions.
(skk-start-henkan): Search `skk-rule-tree' instead of rule-list.
(skk-set-henkan-point-subr): Use `skk-insert-and-inherit' instead
of `insert'.
1998-10-10 Mikio Nakajima <[email protected]>
* skk-gadget.el (skk-date): Rename to `skk-current-date'.
(skk-today): Not insert a string but return it only when called
not interactively.
* skk.el (skk-kana-input): Use `skk-make-raw-arg'.
Use string returned by a function set in DATA as symbol.
Set prefix-arg only when skk-isearch-message is nil.
(skk-rom-kana-base-rule-list): Allow a string as 2th element of a
cell.
* skk-foreword.el (skk-make-raw-arg): New inline function.
1998-10-04 Mikio Nakajima <[email protected]>
* skk.el (skk-kana-input): Remove unnecessary temporary variable.
Call `skk-set-okurigana' even if queue is not null.
(save-buffers-kill-emacs): Remove advice.
(skk-kill-emacs-without-saving-jisyo): Just remove-hook
`skk-save-jisyo' from kill-emacs-hook instead of using complex
funciton of advice.el.
(skk-spy-origin-buffer-mode): Bug fixed.
(skk-previous-candidate): Change its argument to numerical one and
hand ot to `skk-kana-input'.
(skk-start-henkan): Change its argument to numerical one.
(skk-zenkaku-mode-map): Remove `skk-kakutei-key' definition.
(skk-mode): Add `skk-kakutei-key' definition in
`skk-zenkaku-mode-map'.
(skk-try-completion-key, skk-next-completion-key,
skk-previous-completion-key, skk-start-henkan-key): New user
variables.
1998-10-03 Mikio Nakajima <[email protected]>
* skk.el (skk-setup-auto-paren): Do not nothing if
`skk-auto-insert-paren' is nil. Comment fixed.
1998-10-02 Mikio Nakajima <[email protected]>
* skk.el (skk-zenkaku-insert): Emulate original behavior in the
current original map when no string is found in
`skk-zenkaku-vector'.
(skk-pre-command): Simplify, defsubstify and move to
skk-forword.el.
(skk-insert): Call `skk-start-henkan', `skk-completion',
`skk-previous-completion' respectively when such behavior is
properly. Do not call `skk-set-henkan-point' when skk-henkan-on
is nil even if CH is a member of `skk-special-midashi-char-list'.
(skk-kana-input): Emulate original behavior in the current
original map when `skk-current-rule-tree' is eq to
`skk-rule-tree' and no DATA is found.
Insert a pair string in `skk-auto-paren-string-alist' when
necessary.
(skk-rom-kana-base-rule-list): Add ",", ".", "!", "-", ":", ";",
"?", "[", "]" and " " entries.
(skk-input-vector, skk-self-insert, skk-insert-period,
skk-insert-comma): Remove.
(skk-setup-auto-paren): Change for removing `skk-input-vector'.
(skk-zenkaku-vector): Modify doc string.
(skk-cancel-undo-boundary): Do not increase
`skk-self-insert-non-undo-count' when `skk-current-rule-tree' is
not null.
(skk-set-henkan-point, skk-start-henkan): Do not call `skk-self-insert'.
1998-09-30 Mikio Nakajima <[email protected]>
* skk.el (skk-undo-kakutei, skk-start-henkan,
skk-set-henkan-point-subr, skk-change-marker,
skk-change-marker-to-white, skk-katakana-region,
skk-hiragana-region, skk-zenkaku-region, skk-insert-str,
skk-insert, skk-set-okurigana, skk-self-insert,
skk-zenkaku-insert): Remove unnecessary `cancel-undo-boundary'.
1998-09-29 Mikio Nakajima <[email protected]>
* skk.el (skk-check-jisyo-size): Typo fixed in the warning message.
1998-09-27 Mikio Nakajima <[email protected]>
* skk.el (skk-kana-cleanup): Defsubsted and moved to
skk-forword.el.
(skk-spy-origin-buffer-mode): Do not nothing if `skk-mode' is nil.
* skk.el: (eval-expression): Comment out.
(overwrite-mode): Adviced documented.
1998-09-25 Mikio Nakajima <[email protected]>
* skk-num.el (skk-raw-number-to-skk-rep): Modify regexp slightly.
(skk-num-type-list): Doc improved.
1998-09-24 Mikio Nakajima <[email protected]>
* skk.el (skk-delete-backward-char): Revive.
(skk-setup-delete-backward-char): New function.
(skk-mode): Call `skk-setup-delete-backward-char'.
(skk-pre-command): Check if this-command is
`skk-delete-backward-char' or not instead of
COMMANDS-THAT-DO-NO-CLEANUP.
(skk-abbrev-mode-map, skk-zenkaku-mode-map, skk-j-mode-map,
skk-ascii-mode-map): Define Meta prefix command even if
`skk-use-viper' is non-nil.
(skk-abbrev-mode-map, skk-j-mode-map): Do not define-key \177 for
`delete-backward-char'.
1998-09-23 Mikio Nakajima <[email protected]>
* skk-rdbms.el (skk-rdbms-SQL-insert-command): Set null value to
okurigana if `skk-henkan-okurigana' is nill.
(skk-rdbms-save-jisyo-function): Bug fixed.
* skk-viper.el (viper-del-backward-char-in-insert,
vip-del-backward-char-in-insert): Adviced documented. Check if
`skk-henkan-active' or not first.
(viper-forward-word-kernel, viper-backward-word-kernel):
Adviced documented.
* skk.el (skk-rom-kana-rule-list): Doc fixed.
(newline, delete-backward-char): Adviced documented.
(delete-backward-char): Check if `skk-henkan-active' or not first.
* skk-server.el (skk-servers-list): Doc fixed.
1998-09-21 Mikio Nakajima <[email protected]>
* skk-gadget.el (skk-convert-ad-to-gengo,
skk-convert-gengo-to-ad): Rename to `skk-ad-to-gengo', and
`skk-gengo-to-ad' respectively.
* skk-viper.el (skk-set-cursor-properly): Overwite original
function in skk.el.
(viper-insert, vip-insert): New advice.
1998-09-20 Mikio Nakajima <[email protected]>
* skk-isearch.el (skk-isearch-mode-alias-alist,
skk-isearch-mode-canonical-alist,
skk-isearch-breakup-string-function,
skk-isearch-breakable-character-p-function,
skk-isearch-working-buffer): Changed to constants as they are
never changed.
(skk-isearch-mode-string-alist): Changed to a user variable.
(skk-isearch-whitespace-regexp): Changed to a user variable and
documented.
* skk-attr.el: (skk-attr-time-difference): Renamed to
`skk-time-difference' and moved to skk.el.
* skk-gadget.el (skk-time-diff): Removed.
(skk-clock): Use `skk-time-difference' instead of `skk-time-diff'.
* skk.el (skk-auto-start-henkan-keyword-list): Doc fixed.
(skk-hankaku-alist): Only define when you use Mule version 1 or 2.
(skk-truncate-message): Bug fixed.
(skk-kill-local-variables): Call `(skk-mode -1)' to turn off
skk-mode.
1998-09-17 Mikio Nakajima <[email protected]>
* skk.el (skk-kana-input-search-function, skk-rom-kana-rule-list,
skk-use-face, skk-kakutei-early): Doc fixed.
1998-09-16 Mikio Nakajima <[email protected]>
* skk.el (skk-truncate-message): Bug fixed.
(skk-save-jisyo): Add doc string.
(skk-set-henkan-point-subr): Apply patch from Hideki Sakurada
<[email protected]> of which message-id is
* skk-foreword.el : Use `string-to-vector' for Mule 3 and
`string-to-char-list' for Mule 1 and 2 in `skk-str-ref'.
1998-09-15 Mikio Nakajima <[email protected]>
* skk.el (skk-setup-auto-paren): Use `skk-alpha-char-p'.
(skk-truncate-message): New function.
(skk-henkan-show-candidate-subr): Use `skk-truncate-message'.
* skk-viper.el : Use `x-color-defined-p' instead of
`x-color-value' to check `viper-insert-state-cursor-color' is a
valid color value (maybe slightly faster).
1998-09-14 Mikio Nakajima <[email protected]>
* skk.el (skk-previous-candidate): Do not call
`skk-init-auto-okuri-variables' and initialize necessary internal
variables.
(skk-henkan-overlay-priority): New user variable.
(skk-henkan-face-on): Put `skk-henkan-overlay-priority' to
`skk-henkan-overlay'.
* skk-viper.el (skk-viper-or-vip): Marked with
`;;;###skk-autoload' label.
1998-09-13 Mikio Nakajima <[email protected]>
* skk-rdbms.el (skk-rdbms-init): Call `buffer-disable-undo'.
(skk-rdbms-save-jisyo-function, skk-rdbms-private-jisyo-dump,
skk-rdbms-dump-error): New user variable.
(skk-rdbms-save-jisyo): Funcall `skk-rdbms-save-jisyo-function'.
(skk-rdbms-SQL-delete-command): Bug fixed.
(skk-rdbms-update-jisyo): Change for `skk-ignore-dic-word'.
(skk-rdbms-public-jisyo-has-entry-p): New funcition.
(skk-rdbms-sahen-search, skk-rdbms-sahen-search-1): Bug fixed.
(skk-rdbms-SQL-update-command): Bug fixed.
* skk.el (skk-j-mode-map, skk-ascii-mode-map,
skk-abbrev-mode-map): Not define `skk-kakutei-key' so as to change
`skk-kakute-key' in ~/.skk.
(skk-mode): Define `skk-kakute-key' as `skk-kakutei' in
`skk-j-mode-map', `skk-ascii-mode-map' and `skk-abbrev-mode-map'
every time `skk-mode' is invoked..
(skk-public-jisyo-has-entry-p): Funcall
`skk-public-jisyo-has-entry-p-function'.
(skk-public-jisyo-has-entry-p-original): Substantially old
`skk-public-jisyo-has-entry-p'.
(skk-public-jisyo-has-entry-p-function): New user variable.
(skk-abbrev-cursor-color): Doc fixed.
1998-09-12 Mikio Nakajima <[email protected]>
* skk-viper.el (skk-viper-or-vip,
skk-viper-normalize-map-function): Change them to constants as
they are never changed.
* Cursor color support (`skk-use-color-cursor' is non-nil and
`viper-insert-state-cursor-color' is null value, cursor color is
set properly according to SKK mode.)
(viper-hide-replace-overlay): Adviced.
(viper-intercept-ESC-key, vip-intercept-ESC-key): Change them to
around advices.
* skk.el (skk-kakutei-save-and-init-variables): Initialize
`skk-okuri-index-min', `skk-okuri-index-max' and
`skk-henkan-in-minibuff-flag'.
(skk-update-jisyo-original): Call `skk-remove-common' if
`skk-okuri-index-min' is larger than 0.
(insert-file): Adviced.
(skk-relation-length, skk-relation-record-num,
skk-relation-make-period-separator): Move to skk-attr.el
* skk-auto.el (skk-init-auto-okuri-variables): Removed.
(skk-remove-common, skk-auto-okurigana-prefix, skk-kana-rom-vector
skk-henkan-in-minibuff-flag, skk-okuri-index-min,
skk-okuri-index-max): Move to skk.el for `skk-rdbms-sahen-search'.
* skk-rdbms.el (skk-rdbms-sahen-search): New function.
(skk-rdbms-search-sahen-command): New macro.
(skk-rdbms-hinsi-base-table, skk-rdbms-hinsi-data-table): New user
variable.
(skk-rdbms-update-jisyo): Call `skk-remove-common' if
`skk-okuri-index-min' is larger than 0.
(skk-rdbms-SQL-insert-command): Determine okuriari or not by
`skk-henkan-okurigana'.
* skk-kakasi.el: Decode with euc-japan coding system what received
by kakasi.
1998-09-11 Mikio Nakajima <[email protected]>
* skk-rdbms.el (skk-rdbms-error-regexp,
skk-rdbms-update-fail-regexp): Change regexp slightly.
* skk.el (skk-auto-paren-string-alist): Add ("`" . "'") pair.
(skk-public-jisyo-contains-p): Rename to
`skk-public-jisyo-has-entry-p'.
(skk-current-rule-tree, abort-recursive-edit,
minibuffer-keyboard-quit, skk-erase-prefix): Apply the patch
<[email protected]> from Murata Shuuichirou
1998-09-06 Mikio Nakajima <[email protected]>
* skk-rdbms.el (skk-rdbms-update-fail-regexp): Documented.
(skk-rdbms-kakutei-jisyo-table, skk-rdbms-initial-jisyo-table):
Doc improved.
1998-09-01 Mikio Nakajima <[email protected]>
* skk-auto.el (skk-okuri-search): Marked with `;;;###skk-autoload'
label.
* skk-rdbms.el (skk-rdbms-private-jisyo-table,
skk-rdbms-public-jisyo-table, skk-rdbms-jis2-jisyo-table): Doc
improved. Remove `skk_' prefix from default values of these user
variables.
(skk-rdbms-busyu-henkan, skk-rdbms-stroke-henkan): New functions.
(skk-rdbms-kcode-table, skk-rdbms-stroke-table,
skk-rdbms-busyu-base-table, skk-rdbms-busyu-data-table): New user
variable.
(skk-rdbms-SQL-search-busyu-command,
skk-rdbms-SQL-search-stroke-command): New macros.
(skk-rdbms-okuri-search-subr): Rename to `skk-rdbms-okuri-search'.
1998-09-01 Murata Shuuichirou <[email protected]>
* skk-foreword.el (skk-str-ref): Defaliased to `sref' if mule
version is 2.3 or 3.
1998-08-31 Mikio Nakajima <[email protected]>
* skk-rdbms.el (skk-rdbms-kill): Call `skk-rdbms-save-jisyo'
before killing database process if `this-command' is not
`save-buffers-kill-emacs'.
* skk.el (skk-byte-compile-init-file): Bind to nil by default.
1998-08-30 Murata Shuuichirou <[email protected]>
* skk-foreword.el (skk-mule4): New constant.
(skk-substring, skk-str-ref, skk-str-length, skk-charsetp,
skk-char-octet): New alliases or functions.
* skk-auto.el (skk-auto-okurigana-prefix): Use
`skk-kana-rom-vector' instead of `skkdic-okurigana-table'.
(skk-remove-common): Bug fixed.
1998-08-30 Mikio Nakajima <[email protected]>
* skk-rdbms.el (skk-rdbms-save-jisyo): Correct message.
(skk-rdbms-kill): Message verbosely.
(skk-rdbms-search-jisyo-table): Remove temporary variable
CUTOFF-FUNC.
(skk-rdbms-cutoff-output-function-2): Add `save-excursion'.
(skk-rdbms-cutoff-output-function-3): Remake.
(skk-rdbms-SQL-insert-command, skk-rdbms-SQL-delete-command,
skk-rdbms-SQL-update-command,
skk-rdbms-SQL-search-private-jisyo-command,
skk-rdbms-SQL-search-public-jisyo-command,
skk-rdbms-jis2-jisyo-table): New macros.
(skk-rdbms-update-jisyo): Refer to `skk-rdbms-SQL-insert-command',
`skk-rdbms-SQL-delete-command', and
`skk-rdbms-SQL-update-command'.
(skk-rdbms-search-jisyo-table): Use
`skk-rdbms-SQL-search-private-jisyo-command' and
`skk-rdbms-SQL-search-public-jisyo-command'.
(skk-rdbms-SQL-wildcard): Removed.
* dicconv.awk: Change for [SML] jisyo or JIS2 jisyo.
* createtbl.sql: Make `skk_large_jisyo' and `skk_jis2_jisyo'
table.
1998-08-29 Mikio Nakajima <[email protected]>
* skk-auto.el (skk-okuri-search-subr-function): Rename to
`skk-okuri-search-function'.
1998-08-28 Takao KAWAMURA <[email protected]>
* skk.el (skk-mode): Compile `skk-rom-kana-base-rule-list' first.
(skk-start-henkan): Bug fixed.
1998-08-28 Hideki Sakurada <[email protected]>
* skk.el (skk-compile-rule-list): Bug fixed.
1998-08-27 Mikio Nakajima <[email protected]>
* Makefile: Add file dependencies.
* createtbl.sql: Add `NOT NULL' restriction to `okuriari', `yomi'
and `kanji' field when create `skk_private_jisyo 'table (Why can't
I add it to `date' field?).
* skk-rdbms.el (skk-rdbms-update-jisyo): Process WORD by
`skk-remove-common' if `skk-auto-okuri-process' is non-nil.
(skk-rdbms-okuri-search-subr): New function.
(skk-rdbms-completion, skk-rdbms-previous-completion): Bug fixed.
* Add `skk-rdbms-kill' to `skk-before-kill-emacs-hook' instead of
`kill-emacs-hook'.
(skk-rdbms-cutoff-output-function,
skk-rdbms-cutoff-output-function-2): Modify the regexp slightly.
(skk-rdbms-cutoff-output-function-3): New user variable.
* skk-auto.el (skk-auto-okurigana-prefix): Bug fixed.
(skk-okuri-search-subr): Rename to
`skk-okuri-search-subr-original'.
(skk-okuri-search-subr): Remove.
(skk-okuri-search): Funcall `skk-okuri-search-subr-function'
instead of calling `skk-okuri-search-subr'.
(skk-okuri-search-subr-function): New user variable.
(skk-adjust-search-prog-list-for-auto-okuri): Add
`(skk-okuri-search)' list just before a list which contains
`skk-jisyo' or `skk-rdbms-private-jisyo-table'.
* skk.el (skk-search-relation, skk-attr-search-relation,
skk-update-relation, skk-attr-update-relation): Move to
skk-attr.el.
1998-08-26 Mikio Nakajima <[email protected]>