-
Notifications
You must be signed in to change notification settings - Fork 42
/
ChangeLog.1
1134 lines (823 loc) · 39.5 KB
/
ChangeLog.1
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
1999-11-03 Mikio Nakajima <[email protected]>
* experimental/skk-jisx0201.el (skk-jisx0201-search-and-replace):
New function.
(skk-hiragana-to-jisx0201-region): Use
`skk-jisx0201-search-and-replace' and bug fixed.
(skk-katakana-to-jisx0201-region): Ditto.
1999-10-31 Mikio Nakajima <[email protected]>
* skk-autoloads.el: Add autoload of `skk-jisx0201-mode',
`skk-toggle-katakana' and `skk-jisx0201-henkan'.
* SKK-MK (SKK_MODULES): Add `skk-jisx0201' and `skk-hankaku-mode'.
* experimental/skk-hankaku-mode.el (skk-hankaku-henkan,
skk-hankaku-region, skk-hiragana-to-hankaku-region,
skk-katakana-to-hankaku-region): New function.
(skk-toggle-zenkaku-hankaku): Convert hiragana/katakana in midasi
into hankaku katakana in ▽ mode.
1999-10-30 Tsukamoto Tetsuo <[email protected]>
* experimental/skk-hankaku-mode.el: New experimental program.
1999-10-27 FUKANO Masaaki <[email protected]>
* doc/skk.texi (入力モードを示すカーソル色に関する設定): typo
fixed.
1999-10-25 Tsukamoto Tetsuo <[email protected]>
* skk.el (skk-status-indicator): New variable which decides where
to show the current status of SKK.
(skk-setup-modeline): New function.
(skk-mode): Call it when `skk-init-file' is loaded.
Set the value of `skk-input-mode-string' on entering/exiting
skk-mode, if `skk-status-indicator' is left.
1999-10-24 Tsuyoshi AKIHO <[email protected]>
* skk-leim.el (default-input-method): Set `default-input-method'
string "japanese-skk" instead of the symbol.
1999-10-23 Mikio Nakajima <[email protected]>
* skk-autoloads.el: Add autoload of `skk-abbrev-search'.
* skk-vars.el: Ditto.
* experimental/skk-study.el (skk-study-last-update): New internal
variable.
(skk-study-last-read): Ditto.
(skk-study-time-lessp): New function.
(skk-study-save): Refer to `skk-study-last-read', and refer to and
set `skk-study-last-save'.
(skk-study-read): Set `skk-study-last-read.
* SKK-MK (SKK_MODULES): Add skk-abbrev.
* experimental/skk-abbrev.el: New experimental program.
* skk.el (skk-read-from-minibuffer-function): New user variable.
(skk-henkan-in-minibuff): Use `skk-read-from-minibuffer-function'.
1999-10-23 Takeshi Ohmura <[email protected]>
* make.bat: set EMACS and PREFIX default value to be proper to
Meadow 1.10.
* READMEs/README.win: Update for Meadow 1.10.
1999-10-22 Mikio Nakajima <[email protected]>
* skk.el (skk-make-temp-file): New
`skk-file-exists-and-writable-p'.
Provide "~/tmp" as last choice of working directory.
* skk-foreword.el (skk-file-exists-and-writable-p): New inline
function.
1999-10-20 Mikio Nakajima <[email protected]>
* experimental/skk-lookup.el: Require poe.el for `defalias-maybe'.
Define `skk-okurigana-prefix' as an alias for
`skk-auto-okurigana-prefix' if `skk-okurigana-prefix' is not
defined.
(skk-lookup-option-alist): New 2th element, search method for
okuri-ari and `skk-process-okuri-early' is nil.
New 3th element, search method for okuri-ari and
`skk-process-okuri-early' is non-nil.
Make meaning of 4th element reverse. Not seach if nil.
Change :type accordingly.
(skk-lookup-default-option-list): New 1th element, search method for
okuri-ari and `skk-process-okuri-early' is nil.
New 2th element, search method for okuri-ari and
`skk-process-okuri-early' is non-nil.
Make meaning of 3th element reverse. Not seach if nil.
Change :type accordingly.
(skk-lookup-get-method): Get proper method according to okurigana
and `skk-process-okuri-early'.
(skk-lookup-get-nonsearch-sex): Change index accordingly.
(skk-lookup-get-pickup-regexp): Ditto.
(skk-lookup-get-split-regexp): Ditto.
(skk-lookup-process-okurigana): New function.
(skk-lookup-search): Use `skk-lookup-process-okurigana'.
(skk-lookup-process-heading): Ditto.
(skk-lookup-test-regexp): Add doc string.
(skk-lookup-pickup-headings): Ditto.
* experimental/skk-study.el (skk-study-save): Check coding-system
by `find-coding-system', too.
* skk.el (skk-auto-okurigana-prefix): Rename to
`skk-okurigana-prefix'.
(skk-remove-common): Use `skk-okurigana-prefix'.
1999-10-17 Mikio Nakajima <[email protected]>
* experimental/skk-study.el (skk-study-update): make-ring for
`skk-study-data-ring' if nil.
* experimental/skk-lookup.el (skk-lookup-option-alist): New 2th
element, search method for okuri-nasi. And new 3th element, S
expression not to search.
(skk-lookup-default-option-list): Likewise.
(skk-lookup-get-nonsearch-sex): New inline function.
(skk-lookup-get-method): Pick up 1th element when okuri-ari,
otherwise 0th.
(skk-lookup-search): Change for `skk-lookup-option-alist' and
`skk-lookup-default-option-list'.
(skk-lookup-process-heading): Likewise.
* SKK-MK (SKK-MK-config-package): Removed.
(SKK-MK-config): Ditto.
(default-load-path): Ditto.
1999-10-16 Mikio Nakajima <[email protected]>
* skk-leim.el: Specify `japanese-skk' and
`japanese-skk-auto-fill' as string for `register-input-method' to
work around Emacs bug.
1999-10-15 Mikio Nakajima <[email protected]>
* skk-num.el (skk-num-recompute): Use `with-temp-buffer' instead
of `save-excursion'.
* skk.el (skk-reread-private-jisyo): Rename optional argument
QUIET to FORCE.
1999-10-15 Takao KAWAMURA <[email protected]>, Mikio Nakajima <[email protected]>
* experimental/skk-study.el (skk-study-read): New optional
argument FORCE.
1999-10-15 Mikio Nakajima <[email protected]>
* experimental/skk-study.el (skk-study-update): Bug fixed.
1999-10-12 Mikio Nakajima <[email protected]>
* skk-look.el (skk-look-command): Change defcustom type to `file'.
* skk-isearch.el (skk-isearch-mode-cleanup): Remove minibuffer
hooks.
* skk.el (skk-use-relation, skk-use-rdbms): Remove experimental
user options.
(skk-regularize, skk-purge-from-jisyo, skk-mode,
skk-public-jisyo-has-entry-p): Remove `skk-use-relation' and
`skk-use-rdbms' related codes.
1999-10-11 Mikio Nakajima <[email protected]>
* make.bat: Don't set `PACKAGEDIR' and `V_S_LISPDIR' environment
variables.
1999-10-10 Mikio Nakajima <[email protected]>
* experimental/skk-study.el (skk-study-search-1): New function.
(skk-study-search): Use `skk-study-search-1'.
(skk-study-update): If current update data is just same as the
last one, don't save the current one.
(skk-study-save): Keep fundamental mode for skk-study-file not to
fontify by font-lock.el unnecessarily.
(skk-study-read-1): Modify VERSION-STRING accordingly.
Check `skk-jisyo-code' by `find-coding-system', too.
(skk-study-convert-alist-format): Removed.
(skk-study-save): Not to use `skk-study-convert-alist-format'.
(skk-kakutei-initialize, skk-undo-kakutei): New advices.
1999-10-07 Mikio Nakajima <[email protected]>
* skk.el (skk-jisyo-code): :type fixed.
(skk-rom-kana-base-rule-list): Doc modified.
(skk-rom-kana-rule-list): Ditto.
1999-10-06 Tomotaka SUWA <[email protected]>
(skk-make-temp-file): Bug fixed.
1999-10-06 Mikio Nakajima <[email protected]>
* skk.el (skk-remove-common): Assign proper value to
`skk-char-okurigana'.
* SKK-MK (EMU_PREFIX): get environment variable `EMU_PREFIX'
first.
1999-10-05 Mikio Nakajima <[email protected]>
* experimental/skk-study.el (skk-study-file): Use
`convert-standard-filename'.
(skk-study-backup-file): Ditto.
(skk-study-working-buffer): Remove.
(skk-study-read-1): Use `with-temp-buffer' instead of
`save-excursion'.
Check with `find-coding-system' if `coding-system-p ' returns nil.
* experimental/skk-lookup.el (skk-lookup-test-regexp): New
function.
(skk-lookup-option-alist): Add "IWAKOKU" entry.
1999-10-04 Mikio Nakajima <[email protected]>
* experimental/skk-lookup.el (skk-lookup-get-method): Search
`skk-lookup-option-alist' with index attaching prefix of book's
name to NAME.
(skk-lookup-get-pickup-regexp): Ditto.
(skk-lookup-get-split-regexp): Ditto.
(skk-lookup-search-agents): Use `copy-sequence' instead of
`copy-list' for compatibility.
(skk-lookup-option-alist): Add entries of jedict, GENIUS,
GN99EP01, GN99EP02 and NEWANC.
(skk-lookup-search): Bug fixed and slightly simplified.
* skk-autoloads.el: Update autoloads.
1999-10-03 Mikio Nakajima <[email protected]>
* skk-vars.el: Update autoloads.
* doc/skk.texi (お願い): Add skk-dic ML e-mail address.
* experimental/skk-lookup.el (skk-lookup-pickup-headings): Bind
`lookup-gaiji-alternate' to null string and not bind
`lookup-enable-gaiji' to nil.
(skk-lookup-search): Ditto.
New temporary variable PICKUP-REGEXP and SPLIT-REGEXP.
Do not use `skk-lookup-process-heading' when both PICKUP-REGEXP
and SPLIT-REGEXP is nil.
(skk-lookup-process-heading): Simplify slighly.
New arguments PICKUP-REGEXP and SPLIT-REGEXP.
Discard temporary variable of the same names.
Process properly when only SPLIT-REGEXP is specified and PICKUP-REGEXP
is nil.
* skk.el (skk-mode): Require skk-leim.el when running Mule3,
Mule4, XEmacs 20.3 or later.
* skk-leim.el: Set `current-language-environment' to "Japanese".
Set `default-input-method' to `japanese-skk'.
* skk-gadget.el (skk-number-style): Modify document.
* skk-tut.el (skk-tut): New group.
* skk-isearch.el (skk-isearch-mode-string-alist): Tagify.
* (skk-isearch-mode-string-alist): Specify type and tagify.
* skk-num.el (skk-num-type-alist): Specify type and tagify.
* skk-gadget.el (skk-number-style): Ditto.
* skk-server.el (skk-servers-list): Ditto.
* skk-kakasi.el (skk-use-kakasi): Bind default variable to return
variable of `(exec-installed-p "kakasi")'.
* skk-num.el (skk-num-type5-kanji): Bug fixed.
* experimental/skk-lookup.el (skk-lookup-search-agents): Use
`copy-list' instead of `coyu-sequence'.
1999-10-02 Mikio Nakajima <[email protected]>
* experimental/skk-lookup.el (skk-lookup-pickup-pattern,
skk-lookup-split-pattern): Removed.
(skk-lookup-search-agents, skk-lookup-option-alist,
skk-lookup-default-option-list, skk-lookup-search-modules): New
user variables.
(skk-lookup-agent-list, skk-lookup-default-module,
skk-lookup-module-list): New internal variables.
(skk-lookup-get-method, skk-lookup-get-pickup-regexp,
skk-lookup-get-split-regexp): New inline functions.
(skk-lookup-search): Use `skk-lookup-default-module'.
Bind `lookup-enable-gaiji' to nil not to put out gaiji.
Get search method by each dictionary.
(skk-lookup-process-heading): Get regexp from name of dictionary.
(skk-lookup-default-module, skk-lookup-module-list,
skk-lookup-new-module, skk-lookup-agent-list,
skk-lookup-pickup-headings): New functions.
1999-09-30 Mikio Nakajima <[email protected]>
* skk-num.el: Require cl only when compiling.
* experimental/skk-lookup.el: Require cl when compiling.
(skk-lookup-pickup-pattern): Change regexp for multiple `【' and `】'
pair.
(skk-lookup-process-heading): New function.
(skk-lookup-search): Use `skk-lookup-process-heading'.
* skk-foreword.el (skk-get-current-candidate-simply): Add error
checking.
* skk.el (kill-buffer): Do `skk-kakutei' only when `kill-buffer'
is called interactively.
1999-09-29 Mikio Nakajima <[email protected]>
* experimental/skk-lookup.el: New file.
1999-09-28 Mikio Nakajima <[email protected]>
* doc/skk.texi (SKK関連ソフトウェア): Add `skkfep内蔵jvim' node.
1999-09-27 Mikio Nakajima <[email protected]>
* experimental/tut-code/skk-tutcdef.el (skk-tutcode-use-touch16+):
Add Touch16+ code to `skk-rom-kana-rule-list' when
`skk-tutcode-use-touch16+' is non-nil.
* experimental/tut-code/skk-tutcode.el
(skk-tutcode-display-code-1): Use `skk-char-octet' instead
of `char-octet'.
(skk-tutcode): New group.
(skk-tutcode-use-touch16+): New user variable.
1999-09-26 Mikio Nakajima <[email protected]>
* doc/skk.texi (SKK関連ソフトウェア): Add `SKK95' node.
1999-09-25 Mikio Nakajima <[email protected]>
* SKK-MK: Rewritten to get Emacs Lisp variables from shell
variables in the command line.
* skk-kcode.el (skk-input-by-code-or-menu-jump): Use temporary
variable `REST' and `CH'.
* tinyinstall.el (tinyinstall-add-load-path): New function.
* skk-autoloads.el (skk-submit-bug-report): Add
`skk-submit-bug-report' entry.
* skk-develop.el: Move from experimental directory.
(skk-submit-bug-report): Take from skk.el.
Define Wanderlust as mail-user-agent when `mail-user-agent' is
`wl-user-agent'.
(skk-ml-address): Take from skk.el.
* skk-kcode.el (skk-display-code): Use `skk-char-octet' instead
of `char-octet'.
* skk.el (skk-auto-okurigana-prefix): Ditto.
(skk-set-henkan-point): Ditto.
(skk-make-temp-file): Use `temporary-file-directory'.
* skk-viper.el (skk-jisx0208-p): Removed.
1999-09-24 Mikio Nakajima <[email protected]>
* skk-foreword.el (skk-str-length, skk-substring, skk-read-event,
skk-char-to-string, skk-ascii-char-p, skk-str-ref, skk-jisx0208-p,
skk-jisx0208-numeric-char-p): Define with `skk-defsubst-cond'.
(skk-make-char, skk-charsetp, skk-jisx0208-to-ascii): Define with
`skk-defun-cond'.
* skk-kcode.el (skk-display-code): New function.
(skk-display-code-for-char-at-point): Use `skk-display-code'.
* SKK-MK (SKK-MK-config): Recalc `SKK_LISPDIR' variable when
`PREFIX' is specified in command line.
* doc/skk.texi (SKK関連ソフトウェア): Add `dbskkd-cdb' node.
1999-09-23 Mikio Nakajima <[email protected]>
* experimental/skk-develop.el: `def-edebug-spec' for
`skk-defun-cond', `skk-defmacro-cond' and `skk-defsubst-cond'.
* experimental/skk-dcomp.el: New file.
* skk.el (skk-henkan-face): Simply specify 'highlight.
(skk-faces): New group.
(skk-henkan-face-on): Define using `defun' instead of
`skk-defun-cond'.
(skk-henkan-face-off): Ditto.
(skk-henkan-face-on): Use `skk-face-on'.
(skk-detach-extent): New function.
(skk-henkan-face-off): Use 'skk-detach-extent'.
(skk-set-jisyo-code): Remove.
(skk-get-jisyo-buffer): Not to use `skk-set-jisyo-code'.
* skk-foreword.el (skk-defmacro-cond): New macro.
(skk-face-on): New macro.
* skk-tut.el (skk-tut-section-face): Use `defface' instead of
`defcustom'.
(skk-tut-do-it-face): Ditto.
(skk-tut-question-face): Ditto.
(skk-tut-key-bind-face): Ditto.
(skk-tut-hint-face): Ditto.
1999-09-22 TSUMURA Tomoaki <[email protected]>
* skk.el (skk-get-jisyo-buffer): Add check using
`find-coding-system' to check using `coding-system-p'.
(skk-save-jisyo-1): Ditto.
1999-09-22 Mikio Nakajima <[email protected]>
* skk.el (skk-face-on): Moved from skk-dcomp.el.
(skk-detach-extent): Ditto.
(skk-henkan-face-on): Use `skk-face-on'.
(skk-henkan-face-off): Use `skk-detach-extent'.
* SKK-CFG: Add `APEL_SPECIFIC_LISPDIR' entry.
* SKK-MK: Ditto. Require `tinyinstall.el'.
Load `SKK-CFG' before cunstructing `load-path'.
Add `APEL_SPECIFIC_LISPDIR' directory to `load-path' if
`APEL_SPECIFIC_LISPDIR' is existing directory.
* tinyinstall.el: New file.
1999-09-21 Masahiko Sato <[email protected]>
* vip.el (vip-escape-to-emacs): Bug fix. Use
(buffer-name old-buff) to check if the buffer OLD-BUFF still
exists.
1999-09-20 Mikio Nakajima <[email protected]>
* skk.el (skk-submit-bug-report): Remove `skk-use-rdbms' from
LIST (because it is an experimental option).
1999-09-20 Yuh Ohmura <[email protected]>
* make.bat: set `PREFIX' variable.
* READMEs/README.win: Add description about `PACKAGEDIR'.
1999-09-20 Rei FURUKAWA <[email protected]>
* skk-foreword.el (skk-make-char): Bug fixed.
1999-09-19 Mikio Nakajima <[email protected]>
* skk.el (skk-get-jisyo-buffer): Not to use temporary variable
`FILE'. Use first argument `FILE' directly instead.
1999-09-17 Mikio Nakajima <[email protected]>
* SKK-MK (SKK-MK-running-xemacs): New constant.
(SKK-MK-texinfo-coding-system): Use `SKK-MK-running-xemacs'.
(SKK-MK-install): Call `SKK-MK-cleanup-trouble-makers' when either
`SKK-MK-running-xemacs' and `SKK-MK-cleanup-trouble-makers' are
non-nil.
(SKK-MK-cleanup-trouble-makers): Bug fixed. Bind default variable
to nil.
(SKK-MK-running-xemacs): Declare on top of file.
(SKK-MK-texinfo-coding-system): Ditto.
(SKK_MODULES): Add `skk-vars' if `skk-leim.el' is dumped into
XEmacs.
(skk-vars.el): Revive (for XEmacs dumped with non-package SKK
10.38).
* Makefile (CHMOD): New variable.
(checkin): New entry.
(tar): Refer to `CHMOD' variable.
1999-09-16 Yuh Ohmura <[email protected]>
* READMEs/README.win: New file.
1999-09-16 Mikio Nakajima <[email protected]>
* experimental/skk-tutcdef.el: Apply patch
* SKK-CFG: Add `SKK-MK-cleanup-trouble-makers' entry.
* make.bat: Change default EMACS variable to
`c:\usr\meadow\1.00\bin\meadow95.exe'.
* SKK-MK (SKK-MK-config): Recalculate `LISPDIR', `SKK_DATADIR' and
`SKK_INFODIR' when `PREFIX' is specified in command line, and
`SKK_LISPDIR' when `LISPDIR is done.'
(SKK-MK-config-package): Recalculate `PACKAGE_INFODIR',
`SKK_PACKAGE_DATADIR' and `SKK_PACKAGE_LISPDIR' when `PACKAGEDIR'
is specified in command line.
(SKK-MK-cleanup-trouble-makers): New function.
(SKK-MK-install): Not to `cd' DOCDIR, ETCDIR and `..'.
(SKK-MK-install-package): Ditto. Call
`SKK-MK-cleanup-trouble-makers' if `SKK-MK-cleanup-trouble-makers'
is non-nil.
(SKK-MK-texinfo-format): Bound `buffer-read-only' to nil. Expand
file name of each arg in DOCDIR.
* skk-tut.el: Change Iida San's mail address.
(skktut-init-variables-alist): Bug fixed.
(skk-tut-file): Specify `/usr/local/share/skk' directory for
non-package install instead of `data-directory'.
* doc/skk.texi: Add `@directry' for XEmacs package install.
Remove obsolete `skk-insert-[aiue]' descriptions.
1999-09-15 Mikio Nakajima <[email protected]>
* skk-foreword.el (skk-package-data-directory): New constant.
* skk-tut.el: Require skk.el.
(skk-tut-file): Search package installed data file for XEmacs
referring to `skk-package-data-directory'.
(skk-tut-file-alist): Refer to `skk-tut-file'.
* skk.ex: New file to make tarball easily.
* Move all lisp program to top directory.
* SKK-MK, SKK-CFG: Totally rewritten for easy configurations
referring to WL-MK of Wanderlust.
* SKK-ELS: discarded.
* Makefile: Change for new SKK-MK.
* make.bat: Ditto.
* skk.el (exit-minibuffer): Adjust `minibuffer-setup-hook'
and cursor color before doing actual job.
(skk-reread-private-jisyo): Use `with-current-buffer' instead of
`save-excursion'.
* vip.el: Require poe.el for `convert-standard-filename'.
(vip-insert-point, vip-com-point): Set initial value to nil to
keep buffer local variable.
(vip-move-marker-locally): New macro.
(vip-Region, vip-backward-Word, vip-backward-char,
vip-backward-paragraph, vip-backward-sentence, vip-backward-word,
vip-beginning-of-line, vip-bol-and-skip-white, vip-change-mode,
vip-end-of-Word, vip-end-of-word, vip-find-char,
vip-find-char-backward, vip-find-char-forward, vip-forward-Word,
vip-forward-char, vip-forward-paragraph, vip-forward-sentence,
vip-forward-word, vip-goto-char-backward, vip-goto-char-forward,
vip-goto-col, vip-goto-eol, vip-goto-line, vip-goto-mark-subr,
vip-line, vip-next-line, vip-next-line-at-bol, vip-paren-match,
vip-previous-line, vip-previous-line-at-bol, vip-region,
vip-repeat-find, vip-repeat-find-opposite, vip-search-backward,
vip-search-forward, vip-window-bottom, vip-window-middle,
vip-window-top): Use `vip-move-marker-locally' instead of
`move-marker'.
(vip-escape-to-emacs): Use `eq' instead of `equal' to compare
buffer type lisp objects.
1999-09-11 Mikio Nakajima <[email protected]>
* lisp/vip.el (vip-startup-file): `convert-standard-filename'
takes regular UNIX filename only.
1999-09-10 Mikio Nakajima <[email protected]>
* lisp/skk.el (skk-init-file, skk-jisyo, skk-backup-jisyo,
skk-record-file, skk-emacs-id-file): Use
`convert-standard-filename'.
1999-09-04 GUNJI Takao <[email protected]>
* experimental/tut-code/skk-tutcode.el
(skk-tutcode-display-code-1): Bug fixed.
1999-09-03 Mikio Nakajima <[email protected]>
* lisp/skk-foreword.el (skk-uninsertable-p): Removed.
* lisp/skk.el (skk-insert): Do not use `skk-uninsertable-p'.
1999-09-02 Mikio Nakajima <[email protected]>
* lisp/skk-develop.el: Move to experimental directory.
* lisp/skk-isearch.el: Require skk.el. Modify install note for
isearch-mode-end-hook.
* lisp/skk.el (skk-update-jisyo-1): Bug fixed.
1999-08-31 Mikio Nakajima <[email protected]>
* lisp/SKK-ELS (skk-modules): Add skk-autoloads to `skk-modules'.
* lisp/SKK-MK (config-skk-package): Remove skk-autoloads from
`skk-modules'.
* lisp/skk-foreword.el (skk-erase-prefix): When error is occured
by deleting `skk-prefix', initialize `skk-kana-start-point',
`skk-prefix' and `skk-current-rule-tree'.
* lisp/skk.el (skk-delete-okuri-mark): Check
`skk-okurigana-start-point' is a marker.
(skk-mode): Require skk-autoloads.
1999-08-30 TSUMURA Tomoaki <[email protected]>
* lisp/skk-tut.el (skktut-init-variables-alist): Bug fixed.
1999-08-30 Mikio Nakajima <[email protected]>
* lisp/skk.el (skk-delete-backward-char): Delete `*' and
initialize okuri-ari related variables for okuri-ari.
1999-08-29 Mikio Nakajima <[email protected]>
* lisp/skk-develop.el: Created.
* lisp/skk-tut.el (skktut-init-variables-alist): Remove
`skk-use-vip' entry.
* lisp/skk.el (skk-save-jisyo-original): Initialize
`skk-update-jisyo-count'.
(skk-update-jisyo-original): Do not initialize
`skk-update-jisyo-count'.
(skk-kana-cleanup-command-list): New constant.
(skk-uninsertable-p): Move skk-foreword.el and make it inline.
Define with `skk-defsubst-cond' and check all extents, not just
text-properties for XEmacs.
(skk-henkan-face-on, skk-henkan-face-off): Use `skk-defun-cond.
Use extent for XEmacs.
(skk-change-cursor-when-ovwrt): Use `skk-defun-cond.
(skk-save-jisyo-original): Call `fillarray' instead of
`make-vector'.
* lisp/skk-foreword.el (skk-pre-command): Use
`skk-kana-cleanup-command-list'.
(skk-terminal-face-p): Move to skk.el.
(skk-defun-cond, skk-defsubst-cond): New macros (borrowed from
poe.el).
* lisp/skk-viper.el (skk-viper-or-vip): Rename to
`skk-viper-use-vip-prefix'.
(skk-viper-normalize-map-function, skk-viper-advice-select,
viper-hide-replace-overlay): Use `skk-viper-use-vip-prefix'.
1999-08-29 Masahiko Sato <[email protected]>
* vip.el (vip-delete-backward-char): skk-mode が t のときの処理を
改良。
1999-08-28 Masahiko Sato <[email protected]>
* vip.el (skk-pre-command): defadvice で skk-foreword.el での定義
を変更。
* skk-foreword.el (skk-pre-command): this-command が
vip-delete-backward-char の場合の処理を vip.el に移した。
1999-08-27 Masahiko Sato <[email protected]>
* vip.el (vip-skk-mode-on):
(add-hook 'pre-command-hook 'skk-pre-command nil 'local)
を追加。
(vip-skk-mode-off): 以下の行を削除
(setq skk-mode nil)
(vip-skk-mode-off):
(if skk-abbrev-mode (skk-j-mode-on)) を先頭に追加。変数
vip-skk-abbrev-mode が不要になった。
* skk-foreword.el (skk-pre-command): skk-pre-command を実行しない
コマンドのリストに vip-delete-backward-char を追加。
* skk.el (abort-recursive-edit): pre-command-hook に対する
add-hook が local になるようにした。skk.el 全体で同様の変更をした。
1999-08-25 Masahiko Sato <[email protected]>
* skk.el: vip 関連のコードをすべて削除。
(skk-mode): 最初に skk-mode に入ったとき:
(require 'skk-autoloads)
(if skk-use-numeric-conversion (require 'skk-num))
を追加.
(skk-input-mode-string): buffer local にした。理由は複数の mode
line があるとき、他の mode line に影響しないようにするため。
(skk-update-jisyo-original): 丁度 skk-jisyo-save-count 回だけ辞書
を更新したときにセーブするようにした。これまでは、例えば、
skk-jisyo-save-count が 50 ならば 51 回更新したときに辞書がセーブ
されていた。
* skk-foreword.el (skk-erase-prefix): skk-kana-start-point が
(point-max) かどうかをチェックするようにした。
* skk-autoloads.el: (provide 'skk-autoloads) を追加。
(autoload 'skk-version "skk" nil t nil) を comment out。
* vip.el: minor mode として実装。minor-mode-map-alist の先頭に
vip-vi-mode, vip-insert-mode のキーマップがくるようにした。vip の
viモードでは vip-vi-mode のキーマップを使用し、insertモードでは
vip-insert-mode のキーマップを使用する。local-map を使わないように
した。
skk 関連のコードはすべて vip.el に吸収。
viper.el が vip-mode を autoload できなくしているので、Vip-mode を追加。
(provide 'vip) を追加。
(vip-change-mode-line): 17b -> 12b
(vip-info-on-file): line number の計算を修正。
(vip-delete-backward-char): 最後の部分を以下のように変更。
(if (and skk-mode (skk-get-prefix skk-current-rule-tree))
(skk-erase-prefix 'clean)
(delete-backward-char val t))))
1999-08-19 Yuh Ohmura <[email protected]>
* lisp/skk.el (skk-rom-kana-base-rule-list): Remove
`("mm" "c" ("ッ" . "っ"))' entry.
* (skk-rom-kana-rule-list): Add `("mm" "m" ("ン" . "ん"))' entry
to insert 「がんま」 by "gamma".
1999-08-19 Mikio Nakajima <[email protected]>
* lisp/skk-look.el (skk-look-1): Bug fixed.
1999-08-19 GUNJI Takao <[email protected]>
* lisp/skk.el (skk-kuten-touten-alist): Typo and bug fixed.
* (skk-rom-kana-base-rule-list): Bug fixed.
* (skk-insert): Enable to include same string as
`skk-start-henkan-char' in car of `skk-rom-kana-base-rule-list'.
1999-08-18 TSUMURA Tomoaki <[email protected]>
* lisp/skk-foreword.el (skk-substring): For mule2. Bug fixed.
1999-08-18 Mikio Nakajima <[email protected]>
* lisp/skk.el (skk-henkan-face-on): Omit check whether
`skk-henkan-start-point' and `skk-henkan-end-point' have really
buffer local markers of current buffer.
* Do not use CBUF temporary variable.
1999-08-17 SAKAI Kiyotaka <[email protected]>
* lisp/skk.el (skk-uninsertable-p): New function.
* (skk-insert): Use `skk-uninsertable-p' to check if point is
really insertable or not.
1999-08-16 Mikio Nakajima <[email protected]>
* lisp/skk-viper.el (skk-jisx0208-p): Can use on Mule 2 or
earlier.
* (viper-join-lines): Use `progn' instead of `skk-save-point'.
* (vip-join-lines): Ditto.
* lisp/skk-vip.el (skk-jisx0208-p): New inline function.
* (vip-join-lines): Adviced. Remove white spaces that exists
between the joined line if characters of both side are JISX0208.
1999-08-15 Mikio Nakajima <[email protected]>
* lisp/SKK-ELS: Remove unnecessary `progn'.
* Require vip.el even if there is viper.el.
* Check 'berkdb feature to examine XEmacs has the database
feature.
* lisp/skk-vip.el (vip-change-mode-to-vi): Adviced. If `skk-mode'
is non-nil, kakutei and turn on skk-latin-mode.
* lisp/skk-autoloads.el (skk-vip-mode): Add autoload definition.
1999-08-02 IIDA Yosiaki <[email protected]>
* lisp/skk-kcode.el (skk-input-by-code-or-menu): Bug fixed.
1999-04-11 Mikio Nakajima <[email protected]>
* experimental/skk-study.el: New experimental program.
* lisp/skk.el (skk-kana-input): Use `skk-get-prefix' to access
skk-prefix.
(skk-menu-modified-user-option): Removed.
1999-04-10 Mikio Nakajima <[email protected]>
* lisp/skk-server.el (skk-server): Change group prefix to
`skk-server-'.
(skk-report-server-response): Renamed to
`skk-server-report-response'.
(skk-remote-shell-program): Renamed to
`skk-server-remote-shell-program'.
* lisp/skk-obsolete.el (skk-obsolete-check-all-files): New
command.
(skk-obsolete-check-all-files-1): New function.
(skk-obsolete-check): Renamaed to `skk-obsolete-check-1'.
(skk-obsolete-check): Cover function/command for
`skk-obsolete-check-1'. Do not check all relative files (check
one file per one command session). Enable to designate filename
interactively.
* lisp/skk-num.el (skk-num): Change group prefix to `skk-num-'.
(skk-numeric-conversion-float-num): Rename to
`skk-num-convert-float'.
(skk-update-jisyo-for-numerals): Renamed to `skk-num-update-jisyo'.
(skk-compute-numeric-henkan-key): Renamed to
`skk-num-compute-henkan-key'.
(skk-numeric-convert): Renamed to `skk-num-convert'.
(skk-numeric-convert*7): Renamed to `skk-num-convert*7'.
(skk-raw-number-to-skk-rep): Renamed to `skk-num-rawnum-exp'.
(skk-raw-number-to-skk-rep-1): Renamed to `skk-num-rawnum-exp-1'.
(skk-flatten-list): Renamed to `skk-num-flatten-list'.
(skk-jisx0208-latin-num-str): Renamed to
`skk-num-jisx0208-latin'.
(skk-shogi-num-str): Renamed to `skk-num-shogi'.
(skk-recompute-numerals): Renamed to `skk-num-recompute'.
(skk-recompute-numerals-key): Renamed to `skk-num-recompute-key'.
(skk-uniq-numerals): Renamed to `skk-num-uniq'.
(skk-init-numeric-conversion-variables): Renamed to
`skk-num-initialize'.
(skk-numeric-midasi-word): Renamed to `skk-num-henkan-key'.
(skk-kanji-num-str): Renamed to `skk-num-type2-kanji'.
(skk-kanji-num-str2): Renamed to `skk-num-type3-kanji'.
(skk-kanji-num-str2-subr): Renamed to `skk-num-type3-kanji-1'.
(skk-kanji-num-str3): Renamed to `skk-num-type5-kanji'.
(skk-kanji-num-str3-subr): Renamed to `skk-num-type5-kanji-1'.
(skk-adjust-numeric-henkan-data): Renamed to
`skk-num-process-user-minibuf-input'.
* lisp/skk.el (skk-kakutei-cleanup-henkan-buffer): Renamed to
`skk-kakutei-cleanup-buffer' (Shorten its name).
* lisp/skk-vip.el (skk-kakutei-cleanup-henkan-buffer): Likewise.
* lisp/skk-num.el (skk-last-num-list,
skk-init-numeric-conversion-variables): Remove `skk-last-num-list'
(Merged into `skk-last-henkan-data').
* lisp/skk-foreword.el (skk-mode-off): Remove
`skk-last-henkan-results'.
* experimental/dbm/skk-dbm.el (skk-dbm-update-jisyo): Likwise.
* lisp/skk.el (skk-setup-auto-paren): Remove unnecessary
temporary variable `cell'.
(skk-update-jisyo-original): Remove temporary variable `last'.
Add `henkan-buffer'.
(skk-search-jisyo-file): Add temporary variable `henkan-buffer'.
(skk-kakutei): Remove `skk-last-henkan-results'.
(skk-last-kakutei-henkan-key, skk-henkan-1,
skk-previous-candidate): Remove `skk-last-kakutei-henkan-key'.
(skk-last-henkan-key, skk-last-henkan-okurigana,
skk-last-henkan-list, skk-last-okuri-char): Merged into
`skk-last-henkan-data'.
(skk-previous-candidate, skk-undo-kakutei): Use
`skk-get-last-henkan-data'.
(skk-kakutei-save-and-init-variables): Renamed to
`skk-kakutei-initialize' (Shorten its name).
* lisp/skk-foreword.el (skk-get-last-henkan-data): New inline
function.
* lisp/skk-tut.el (skktut-end-tutorial): Remove unnecessary
temporary variable `exit'.
* experimental/skk-attr.el (skk-attr-default-update-function):
Removed.
* lisp/skk.el (skk-search-jisyo-file): Funcall
`skk-search-end-function' instead of `skk-attr-search-function'.
* experimental/dbm/skk-dbm.el (skk-dbm-search-jisyo-database):
Likewise.
* lisp/skk.el (skk-update-jisyo-original): Funcall
`skk-update-end-function' instead of `skk-update-relation.
* experimental/dbm/skk-dbm.el (skk-dbm-update-jisyo): Likewise.
* lisp/skk.el (skk-search-end-function, skk-update-end-function):
New user variables.
1999-04-08 Mikio Nakajima <[email protected]>
* lisp/skk.el (skk-mode): Do not funcall
`skk-viper-normalize-map-function' (as it is called in
skk-viper.el).
* lisp/skk-tut.el (skktut-enable-tutmap): Bind `inhibit-quit' to
t.
(skktut-disable-tutmap): Likewise.
* lisp/skk-kakasi.el (skk-gyakubiki-region): Do not use
`combine-after-change-calls'.
(skk-gyakubiki-katakana-region): Likewise.
(skk-hurigana-region): Likewise.
(skk-hurigana-katakana-region): Likewise.
(skk-romaji-region): Likewise.
* lisp/skk-tut.el (skktut-enable-tutmap, skktut-disable-tutmap):
Use `set-modified-alist'.
* lisp/skk-viper.el (skk-viper-normalize-map): Likewise.
* lisp/skk-server.el
(skk-adjust-search-prog-list-for-server-search): Use
`remove-alist'.
1999-04-07 Mikio Nakajima <[email protected]>
* lisp/SKK-CFG: Search APEL installed directory and add it to
load-path.
1999-04-05 Mikio Nakajima <[email protected]>
* lisp/skk-foreword.el: Require alist.el.
* lisp/skk.el: Use `set-modified-alist' for minor-mode-map-alist.
(skk-henkan-show-candidates): Print null message to
clear out candidates in echo area after a candidate are selected.
(skk-setup-auto-paren): Use `remove-alist'.
1999-04-03 Mikio Nakajima <[email protected]>
* lisp/skk.el (minibuffer-exit-hook): Use `remove-hook' instead of
`remove-local-hook'.
* lisp/skk-foreword.el (skk-mode-off): Likewise.
* lisp/skk.el (abort-recursive-edit, query-replace-regexp,
query-replace, minibuffer-keyboard-quit, skk-mode,
skk-henkan-in-minibuff, minibuffer-exit-hook): Use `add-hook'
instead of `add-local-hook'.
* lisp/skk-obsolete.el (skk-obsolete-function-alist): Add
`(skk-set-cursor-color-properly . skk-set-cursor-properly)' entry.
1999-03-27 Mikio Nakajima <[email protected]>
* lisp/skk-look.el (skk-look-1): Do not output null candidate.
(skk-look-working-buffer): Downcase its name.
1999-03-27 Yuh Ohmura <[email protected]>
* lisp/make.bat: Created.
1999-03-26 Mikio Nakajima <[email protected]>
* lisp/skk-kcode.el (skk-input-by-code-or-menu-jump): Use `?\040'
instead of `?\ '.
1999-03-25 Mikio Nakajima <[email protected]>
* experimental/dbm/skk-dbm.el (skk-dbm-make-jisyo): Use
`insert-file-contents-as-coding-system' instead of
`insert-file-contents'.
1999-03-22 SUZUKI Hitoshi <[email protected]>
* lisp/skk-look.el (skk-look-1): Bug fixed.
1999-03-22 Mikio Nakajima <[email protected]>
* lisp/skk-tut.el (kill-buffer): Remove unnecessary `interactive'
form.
* lisp/skk-isearch.el (skk-isearch): Change `skk-' prefix to
`skk-isearch'.
* lisp/skk-kcode.el (skk-kcode): Likewise.
* lisp/skk-look.el (skk-look): Likewise.
* experimental/dbm/skk-dbm.el (skk-dbm): Likewise.
* lisp/skk-kcode.el: Rearrange `;;;###autoload' cookies,
(skk-kcode-load-hook): Bug fixed.
* lisp/skk.el: Rearrange `;;;###autoload' cookies,
(skk-save-jisyo-1): Use
`write-region-as-coding-system' instead of `write-region'.
(skk-get-jisyo-buffer): Use
`insert-file-contents-as-coding-system' instead of
`insert-file-contents'.
(skk-set-jisyo-code): Remove `set-file-coding-system' (APEL has an
alias to `set-buffer-file-coding-system').
1999-03-20 Mikio Nakajima <[email protected]>
* lisp/skk-num.el (skk-numeric-convert): Hand integer instead of
character to `skk-num-exp'.
(skk-num-type-alist): Change each element of alist
`(character . function)' to `(integer . function)'.
* lisp/skk-isearch.el (skk-isearch-mode-string-alist,
skk-isearch-start-mode, skk-isearch-use-previous-mode,
skk-isearch-initial-mode-when-skk-mode-disabled,
skk-isearch-whitespace-regexp): Documented in Japanese.
* lisp/skk-comp.el (skk-dabbrev-like-completion): Doc improved.