-
Notifications
You must be signed in to change notification settings - Fork 42
/
ChangeLog.3
7425 lines (5088 loc) · 219 KB
/
ChangeLog.3
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
2007-08-18 Tetsuo Tsukamoto <[email protected]>
* Version 13.1 Hattori released.
2007-08-18 Tetsuo Tsukamoto <[email protected]>
* skk-e21.el (skk-e21-prepare-modeline-properties): Ignore errors
in `file-name-directory'.
* skk-vars.el: Require `poem' instead of `poe'.
* skk-version.el (skk-version): Bump to 13.1.
2007-08-17 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-wikipedia-1): Fix for nested
<ul>s.
(skk-annotation-url-package-available-p): Require un-define for
Emacs 20, 21 or XEmacs 21.4.
2007-08-16 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-wikipedia-1): Workaround for
nested <ul>s.
* skk.el (backward-kill-sentence): New advice.
2007-08-15 Tetsuo Tsukamoto <[email protected]>
* skk-vars.el
(skk-annotation-en-wiktionary-part-of-speech-regexp):
Add "Quasi-Adjective", "Proverb" "Personal pronoun" and "Counter".
(skk-annotation-en-wiktionary-lang-regexp): Typo.
2007-08-14 Tetsuo Tsukamoto <[email protected]>
* skk-tankan.el (skk-search-tankanji): Try to talk to a server.
2007-08-13 Tetsuo Tsukamoto <[email protected]>
Suggested by Tatsuya Kinoshita <[email protected]>.
* skk-vars.el (skk-show-inline):
(skk-show-tooltip):
Update docstring.
* skk-macs.el (skk-erase-prefix): Call `redraw-frame' under Emacs
20.7.
* skk.el (skk-inline-show): Do not call `propertize' if face is
nil.
(skk-setup-delete-selection-mode): Always put property for
delsel or pending-del.
2007-08-11 Tetsuo Tsukamoto <[email protected]>
* Makefile (clean): Don't remove skk-dic.el.
2007-08-10 Tetsuo Tsukamoto <[email protected]>
Suggested by Eiji Obata <[email protected]>.
* skk-comp.el (skk-search-lisp-symbol): Modify doc string.
* skk-comp.el (skk-smart-find): Load "smart-find" only if
function `smart-find-file' is not defined.
* skk-vars.el
(skk-annotation-en-wiktionary-part-of-speech-regexp): Add
"Letter".
* skk.el (skk-search-jisx0208-romaji): Modify doc string.
2007-08-09 Kitamoto Tsuyoshi <[email protected]>
* doc/skk.texi: Typo.
2007-08-08 Tetsuo Tsukamoto <[email protected]>
* Makefile (tar): Copy skk-dic.el.in to skk-dic.el.
* tut-code/README.tut: .skk -> ~/.skk.
2007-08-05 Eiji Obata <[email protected]>
* skk-server-completion.el (skk-server-completion-search-midasi):
Treat 2nd character as separator.
2007-08-05 Tetsuo Tsukamoto <[email protected]>
Suggested by Kitamoto Tsuyoshi <[email protected]>
and Tatsuya Kinoshita <[email protected]>
* doc/skk.texi: Always use "openlab.jp" for Open Laboratory
URLs.
2007-08-04 Eiji Obata <[email protected]>
* skk-vars.el (skk-server-disable-completion): New variable.
* skk-server-completion.el (skk-server-completion-search-midasi):
If SKK server doesn't respond for server completion, set
`skk-server-disable-completion'.
* skk.el (skk-restart): Clear `skk-server-disable-completion'.
2007-08-03 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-wikipedia-1): Refer to
skk-annotation-ja-wiktionary-lang-regexp and
skk-annotation-ja-wiktionary-part-of-speech-regexp. Ignore
"Badtitle" page. Deal with simple.wikipedia.
* skk-tankan.el (skk-search-tankanji): New function.
* skk-vars.el (skk-search-prog-list-5): Set default value for
skk-tankan.
(skk-annotation-wikipedia-sources): Add simple.wikipedia.
(skk-annotation-en-wiktionary-lang-regexp):
(skk-annotation-en-wiktionary-part-of-speech-regexp):
Update.
(skk-annotation-ja-wiktionary-lang-regexp):
(skk-annotation-ja-wiktionary-part-of-speech-regexp):
New variables.
* skk.el (skk-setup-verbose-messages): Show "単漢字" for C-5.
2007-08-02 Eiji Obata <[email protected]>
* skk.el (skk-kakutei): Add optional argument `ARG' so that C-u
C-j doesn't raise error.
(skk-henkan): Remove redundant code.
2007-08-02 Tetsuo Tsukamoto <[email protected]>
* skk-isearch.el (skk-isearch-buffer-string): New function.
(skk-isearch-search-string):
(skk-isearch-delete-char):
Call it instead of `buffer-string'.
* skk-macs.el (skk-erase-prefix):
(skk-insert-prefix):
Don't insert skk-prefix to the current buffer. Instead, display
it using overlay.
* skk-vars.el (skk-prefix-overlay): New local variable.
* skk.el (skk-delete-backward-char): Don't call `skk-kakutei' if
skk-prefix is present.
* skk-act.el: Update URL.
* skk-comp.el: Add autoload cookie.
* doc/skk.texi: List new elisp files.
2007-08-01 Eiji Obata <[email protected]>
* skk-server-completion.el (skk-server-completion-search-midasi):
Workaround for defect of protocol about SERVER COMPLETION.
2007-07-31 Tetsuo Tsukamoto <[email protected]>
* ccc.el (ccc-setup-new-frame): Name anonymous function for
after-make-frame-functions.
2007-07-29 Tetsuo Tsukamoto <[email protected]>
Suggested by Eiji Obata <[email protected]>.
* skk-vars.el (skk-look-completion-arguments): By default, do not
pass "-d" to look command.
2007-07-27 Eiji Obata <[email protected]>
* skk-look.el (skk-look-completion): If
`skk-comp-use-prefix' is non-nil, restrict result using
`skk-comp-prefix'.
* skk-server-completion.el (skk-comp-by-server-completion):
Ditto.
* skk-vars.el (skk-server-completion-words): Stop being buffer
local.
* skk-comp.el (skk-comp-restrict-by-prefix): Update docstring.
2007-07-21 Eiji Obata <[email protected]>
* skk-vars.el (skk-kakutei-prog-list): Abolish.
* skk.el (skk-kakutei-program-p): Ditto.
* experimental/rdbms/skk-rdbms.el
(skk-rdbms-search-kakutei-jisyo-table): Set
skk-kakutei-henkan-flag instead of skk-kakutei-flag.
* doc/skk.texi: skk-kakutei-flag -> skk-kakutei-henkan-flag.
Update lisp code using `when', etc.
Update description about usage of skkserv.
* skk-vars.el (skk-kakutei-jisyo): Update docstring.
2007-07-18 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-wikipedia-normalize-word):
Don't call `upcase-initials'. Instead, upcase only the first
letter of WORD.
2007-07-17 Tetsuo Tsukamoto <[email protected]>
* skk-tankan.el: Modify comments considering
the position of skk-search-kakutei-jisyo-file in
skk-search-prog-list.
2007-07-16 Eiji Obata <[email protected]>
* skk.el (skk-undo-kakutei-subr): Consider
skk-search-prog-list-[0-9].
2007-07-16 Kitamoto Tsuyoshi <[email protected]>
* doc/skk.texi: Add ~/ to init file names. Add spaces around
ascii words.
2007-07-15 IRIE Tetsuya <[email protected]>
* skk-vars.el (skk-undo-kakutei-flag): New variable.
* skk.el (skk-undo-kakutei-subr): New function.
(skk-undo-kakutei): Use it.
(skk-previous-candidate): Ditto. Update docstring.
(skk-kakutei-initialize): Clear `skk-undo-kakutei-flag'.
(skk-henkan-1): Disable kakutei henkan if `skk-undo-kakutei-flag'
is non-nil.
2007-07-14 Kitamoto Tsuyoshi <[email protected]>
* doc/skk.texi: X -> X Window System.
2007-07-14 Eiji Obata <[email protected]>
* skk-vars.el (skk-kakutei-henkan-flag): New variable.
(skk-kakutei-flag): Update docstring.
(skk-kakutei-unique-candidate-flag): Abolish.
* skk.el (skk-henkan-1): Check for `skk-kakutei-henkan-flag'.
(skk-kakutei-initialize): Clear `skk-kakutei-henkan-flag'.
(skk-search-kakutei-jisyo-file): Update docstring.
2007-07-10 Tetsuo Tsukamoto <[email protected]>
Suggested by IRIE Tetsuya <[email protected]>.
* doc/skk.texi: Fix documentation for private dictionary.
2007-06-30 IRIE Tetsuya <[email protected]>
* skk-vars.el (skk-undo-kakutei-return-previous-point): New user
option.
(skk-undo-kakutei-previous-point)
(skk-undo-kakutei-previous-length): New variable.
* skk.el (skk-kakutei, skk-undo-kakutei): Use them.
* skk-vars.el (skk-kakutei-end-function, skk-last-henkan-data):
Fix docstring.
2007-06-28 Tetsuo Tsukamoto <[email protected]>
* skk-isearch.el (skk-isearch-mode-cleanup): Do not remove
`skk-pre-command' from pre-command-hook.
* skk-isearch.el (skk-isearch-mode-cleanup):
* skk-macs.el (skk-mode-off):
* skk-viper.el (viper-read-string-with-history):
Use `skk-add-pre-command' or `skk-remove-pre-command' instead of
an expression with `add-hook' or `remove-hook'.
* skk-vars.el (skk-egg-like-newline): Modify custom group to
skk-kakutei.
2007-06-28 Eiji Obata <[email protected]>
* skk.el (skk-search): Undo the last change.
(skk-henkan-1): Handle `skk-kakutei-when-unique-candidate' here.
2007-06-27 Eiji Obata <[email protected]>
* skk-vars.el (skk-kakutei-when-unique-candidate): New user
option.
(skk-kakutei-unique-candidate-flag): New variable.
* skk.el (skk-henkan-1, skk-search): Consider them.
* skk-vars.el (skk-kakutei-prog-list): New variable.
* skk.el (skk-kakutei-program-p): New function.
(skk-henkan-1, skk-undo-kakutei): Use it.
(skk-search-kakutei-jisyo-file): Update docstring.
2007-06-26 Eiji Obata <[email protected]>
* skk.el (skk-cancel-undo-boundary): Call `cancel-undo-boundary'
after `skk-kakutei-henkan'.
2007-06-19 Tetsuo Tsukamoto <[email protected]>
* skk.el (skk-henkan-in-minibuff): Restore point after exiting
minibuffer.
2007-06-18 Kenichi Kurihara <[email protected]>
* experimental/bayesian/bskk (DB::marshal): Remove an unused line.
2007-06-15 Tetsuo Tsukamoto <[email protected]>
* SKK-CFG: Distinguish Carbon Emacs Package from generic Carbon
Emacs.
2007-06-14 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-wikipedia-1): Add "h5" to
html2text-remove-tag-list. Do not show "Inflection" in
en.wiktionary.
* skk-vars.el (skk-annotation-en-wiktionary-part-of-speech-regexp):
Support "Demonstrative adjective" and "Phrase".
(skk-annotation-en-wiktionary-lang-regexp): Support Albanian,
Balinese, Lithuanian, Lojban, and Old Prussian.
2007-06-14 Eiji Obata <[email protected]>
* skk-comp.el (skk-comp-do): Fix order of candidates after user
displayed previous candidate.
* skk-vars.el (skk-comp-use-prefix): Update docstring.
2007-06-14 IRIE Tetsuya <[email protected]>
* skk.el (skk-delete-backward-char):
* skk-viper.el (viper-del-backward-char-in-insert):
Consider okurigana length when comparing `skk-henkan-end-point'
with current point.
2007-06-13 Tetsuo Tsukamoto <[email protected]>
* SKK-MK: Distinguish Carbon Emacs Package from generic Carbon
Emacs.
* skk-xemacs.el (skk-tooltip-resize-text): Decide max lines
according to `display-pixel-height' and the size of the default
font.
2007-06-12 Eiji Obata <[email protected]>
* skk-vars.el (skk-use-look): Fix value.
2007-06-12 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-wikipedia-1): Remove span with
interProject class.
* skk-e21.el (skk-tooltip-resize-text): Decide max lines according
to `display-pixel-height' and `frame-char-height'.
* skk-vars.el (skk-kana-cleanup-command-list): Add
`skk-try-completion' and `skk-completion-wrapper'.
2007-06-10 Tetsuo Tsukamoto <[email protected]>
* skk-vars.el (skk-annotation-en-wiktionary-lang-regexp):
(skk-annotation-en-wiktionary-part-of-speech-regexp):
New variables.
* skk-annotation.el (skk-annotation-wikipedia-1): Use variables
above. Remove all <div>s for wikipedia.
* skk-isearch.el (skk-isearch-turn-off-skk-mode):
(skk-isearch-turn-on-skk-mode):
(skk-isearch-skk-kakutei):
(skk-isearch-skk-turn-on-hiragana-mode):
(skk-isearch-skk-turn-on-katakana-mode):
(skk-isearch-skk-turn-on-jix0208-latin-mode):
(skk-isearch-skk-turn-on-latin-mode):
Bind skk-use-color-cursor to nil.
* skk-e21.el (skk-e21-prepare-modeline-properties): Use
`locate-data-file' under Emacs 22.1 or later. Do not call
`find-image' if SKK data director is not found.
2007-06-07 IRIE Tetsuya <[email protected]>
* experimental/bayesian/skk-bayesian.el
(skk-bayesian-save-history): Improve log message.
2007-05-23 IRIE Tetsuya <[email protected]>
* skk.el (skk-delete-okuri-mark): Accept optional argument
NOCLEAR. Do not clear okurigana data if it is non-nil.
(skk-kakutei-cleanup-buffer): When skk-okurigana is set, keep
okurigana data.
2007-05-20 IRIE Tetsuya <[email protected]>
* skk.el (skk-henkan): Fix typo in comment.
(skk-undo-kakutei): Ditto.
2007-05-14 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-message): Call
`keyboard-quit' unless skk-henkan-mode is active.
2007-05-13 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-message):
* skk.el (skk-henkan-on-message):
Undo previous change.
* skk.el (skk-search-function-usage): Noop unless under FSF Emacs
22.
* skk-annotation.el (skk-annotation-message): Unread event for
`skk-previous-candidate' instead of calling `keyboard-quit'.
2007-05-10 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-wikipedia-1): Recognize "Min
Nan".
(skk-annotation-message): Fix nonlocal exit codes.
2007-05-09 Tetsuo Tsukamoto <[email protected]>
* ccc.el: Remove advices to interactive functions. Do not use
isearch-mode-end-hook, minibuffer-setup-hook or
minibuffer-exit-hook. Use post-command-hook instead.
(ccc-defadvice): Abolish.
(ccc-read-color):
(ccc-color-equal):
Support only Emacsen with facemenu.
* skk-annotation.el (skk-annotation-message):
* skk.el (skk-henkan-on-message):
Noop unless under FSF Emacs 22 or later.
2007-05-08 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-wikipedia-1): Support Latin.
Remove Kurdish, Korean, Breton, Murrinh-Patha and Scots. Support
more parts of speech. Remove more <div>s.
(skk-annotation-wikipedia-remove-nested): Accept optional argument
IBTAG.
2007-05-03 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-message):
* skk.el (skk-henkan-on-message):
Do not show verbose message when skk-isearch is on or point is in
minibuffer.
2007-05-02 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el: Rename `skk-annotation-wikipedia-message' to
`skk-annotation-message'.
(skk-annotation-message): Show skk-annotation-message as well as
skk-annotation-wikipedia-message.
* skk-e21.el (skk-tooltip-show-at-point):
* skk-xemacs.el (skk-tooltip-show-at-point):
Call `skk-annotation-message'.
* skk-vars.el (skk-annotation-message): New variable.
2007-04-29 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-wikipedia-message): New
function.
(skk-annotation-wait-for-input): Call it unless digit is set.
(skk-annotation-wikipedia-1): Remove <code> tags.
(skk-annotation-show-buffer): Call
'skk-annotation-wikipedia-message'.
* skk-dcomp.el (skk-dcomp-after-delete-backward-char): Call
`skk-henkan-on-message'.
* skk-e21.el (skk-tooltip-show-at-point):
* skk-xemacs.el (skk-tooltip-show-at-point):
Rename optional 2nd argument. Call
`skk-annotation-wikipedia-message' for annotation.
* skk-vars.el (skk-verbose):
(skk-verbose-wait):
(skk-henkan-on-message):
(skk-annotation-wikipedia-message):
New variables.
* skk.el (skk-setup-verbose-messages):
(skk-henkan-on-message):
New functions.
(skk-insert):
(skk-previous-candidate):
Call `skk-henkan-on-message'.
2007-04-27 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-wikipedia-1): Remove
"Wikipedia has an article on sth" descriptions for en.wiktionary.
* skk-comp.el (skk-comp-lisp-symbol): Bind completion-ignore-case
to nil.
(skk-search-lisp-symbol):
(skk-search-smart-find):
(skk-completion-search):
Take optional argument WITHOUT-CHAR-MAYBE.
* skk-macs.el (skk-eval-string): Format the eval result into
string.
* skk.el (skk-search-function-usage): New function.
2007-04-26 Tetsuo Tsukamoto <[email protected]>
* skk-comp.el (skk-comp-do): Modify message when
skk-current-completion-prog-list does not contain
`skk-comp-by-history'.
(skk-comp-get-candidate): When FIRST is integer from 0 to 9, use
skk-completion-prog-list-{0-9} instead of skk-completion-prog-list.
* skk-dcomp.el (skk-comp): When FIRST is integer, reset completion
data.
* skk-vars.el (skk-completion-prog-list-0):
(skk-completion-prog-list-1):
(skk-completion-prog-list-2):
(skk-completion-prog-list-3):
(skk-completion-prog-list-4):
(skk-completion-prog-list-5):
(skk-completion-prog-list-6):
(skk-completion-prog-list-7):
(skk-completion-prog-list-8):
(skk-completion-prog-list-9):
New user options.
* skk.el (skk-insert): Pass PARG as is to `skk-comp'.
(skk-start-henkan): If PARG is nil, set it to current-prefix-arg.
2007-04-25 Tetsuo Tsukamoto <[email protected]>
* skk.el (skk-search-romaji): Search romaji even when the key
contains non-hiragana characters.
2007-04-24 Tetsuo Tsukamoto <[email protected]>
* skk-isearch.el (skk-isearch-start-henkan): Modify the 1st arg of
`skk-start-henkan' from 0 to 1.
* skk.el (skk-insert):
(skk-start-henkan):
(skk-henkan):
Rename the 2nd arg. Distinguish C-u and other prefix
arguments for skk-comp-first and skk-katakana.
2007-04-23 NAKAMURA Toshikazu <[email protected]>
* skk-vars.el (skk-tut-file):
(skk-large-jisyo):
(skk-aux-large-jisyo):
The 2nd arg of `locate-file' must be list of directories. Fix.
2007-04-23 Tetsuo Tsukamoto <[email protected]>
* skk-e21.el (skk-tooltip-show-at-point):
* skk-xemacs.el (skk-tooltip-show-at-point):
In skk-isearch, refer to `minibuffer-window' instead of
`selected-window'.
* skk-isearch.el (skk-isearch-mode-map): Under FSF Emacs, define
keys for digit argument conversion.
(skk-isearch-wrapper-1):
(skk-isearch-start-henkan):
New functions.
(digit-argument): Advise XEmacs to call
`skk-isearch-start-henkan'.
2007-04-22 Tetsuo Tsukamoto <[email protected]>
* ptexinfmt.el: Sync with emacs-w3m, keeping workarounds for
`texinfo-format-separate-node' and `texinfo-format-end-node'.
* context-skk.el (context-skk-insert): When `this-command-keys'
are translated via function-key-map or key-translation-map, refer
to the keymap.
* skk-annotation.el (skk-annotation-wikipedia-1): Just stop
retrieval on C-g.
(skk-annotation-wait-for-input): No longer wait when SKK exits
henkan active mode.
* skk-vars.el (skk-search-prog-list-0):
(skk-search-prog-list-1):
(skk-search-prog-list-2):
(skk-search-prog-list-3):
(skk-search-prog-list-4):
(skk-search-prog-list-5):
(skk-search-prog-list-6):
(skk-search-prog-list-7):
(skk-search-prog-list-8):
(skk-search-prog-list-9):
New user options.
* skk.el (skk-search-hankaku-katakana):
(skk-search-jisx0208-romaji):
New functions.
(skk-searc-romaji): Accept optional arg JISX0208.
(skk-insert):
(skk-start-henkan):
Accept optional argument PREFIX-ARG.
(skk-henkan): If digit is specified with prefix argument, use
skk-search-prog-list-{0-9} instead of skk-search-prog-list.
2007-04-22 Tetsuo Tsukamoto <[email protected]>
Suggested by Tatsuya Kinoshita <[email protected]>.
* SKK-CFG, SKK-MK, *.el: Specify coding at the first line of each
file containing non-ASCII characters.
* skk-jisyo-edit-mode.el (skk-edit-private-jisyo): Take optional
argument CODING-SYSTEM, default to one implied with
skk-jisyo-code. Bind coding-system-for-read to CODING-SYSTEM for
avoiding misdecoding of skk-jisyo.
2007-04-20 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-wikipedia): Catch
`skk-annotation-wikipedia-suspended'.
(skk-annotation-wikipedia-1):
(skk-annotation-wikipedia-retrieved):
Throw `skk-annotation-wikipedia-suspended' when user seems to have
started editing before retrieval is complete.
2007-04-19 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-wait-for-input): Workaround
for XEmacs 21.4. Explicitly call `keyboard-quit'.
2007-04-18 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-wikipedia-1): Support for
nested <ol> or <dl>.
2007-04-17 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-show-1): Abolish function.
(skk-annotation-show): Include it. Take optional argument
SOURCES.
(skk-annotation-wait-for-input): Take optional argument SOURCES.
browse wikipedia/wiktionary URL for SOURCES. Workaround for XEmacs
event handling.
(skk-annotation-wikipedia-1): Support "英語", "前置詞" and
"接続詞" for ja.wiktionary. Use
`skk-annotation-wikipedia-remove-nested' for removing uls, dls,
and tables.
(skk-annotation-wikipedia-remove-nested): New function.
(skk-annotation-wikipedia-normalize-word): Downcase WORD for
wiktionary if WORD doesn't seem consist of only upper case
characters.
* skk-macs.el (skk-event-key): Under XEmacs, give 2nd, 3rd and 4th
args to `event-to-character' with non-nil values.
* skk-e21.el (skk-e21-coding-system): Set default value for
Carbon Emacs.
* skk-vars.el (skk-show-japanese-menu): Set default value for
Carbon Emacs.
(skk-tooltip-parameters): Add sample setting for customize.
* skk.el (skk-preload): Confirm `stringp' of JISYO.
2007-04-16 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-wait-for-input):
(skk-annotation-wikipedia-region):
Allow user to use prefix argument (digit-argument) and limit
wikipedia/wiktionary sources. This means source is limited to
`(1- prefix-arg)'th element of skk-annotation-wikipedia-sources.
(skk-annotation-wikipedia-cache):
(skk-annotation-wikipedia):
(skk-annotation-treat-wikipedia):
Take optional argument SOURCES.
* skk-vars.el (skk-show-inline): Also add to skk-basic group.
2007-04-15 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-wikipedia-clean-sup):
(skk-annotation-wikipedia-clean-sub):
New functions.
(skk-annotation-wikipedia-1): Bind `html2text-format-tag-list' to
use functions above for tags <sup> and <sub>.
2007-04-14 Tetsuo Tsukamoto <[email protected]>
* SKK-MK (SKK_MODULES): Remove duplicate `skk-azik'.
* skk-act.el:
* skk-azik.el:
Move definitions of user options to skk-vars.el.
* skk-vars.el (skk-input-basic): Rename group from `skk-input'.
(skk-input-enhanced): New custom group.
(skk-act):
(skk-azik):
New groups that belong to `skk-input-enhanced'.
(skk-use-act):
(skk-use-azik):
New user options.
* skk.el (skk-mode-invoke): Setup skk-act, skk-azik, skk-tutcode
or skk-kanagaki when requested.
* tut-code/README.tut: Modify installtation instructions.
* tut-code/skk-tutcode.el: Set parent of group `skk-tutcode'
to `skk-input-enhanced'.
2007-04-12 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-wikipedia-1): Check for
"Cantonese". Pick up "Han character".
2007-04-11 Tetsuo Tsukamoto <[email protected]>
* doc/skk.texi: Update for supported Emacsen and setup.
* skk-macs.el (skk-string-lessp-in-coding-system):
(skk-string<):
New functions. These provide workaround for the unicode branch of
Emacs.
* skk-auto.el (skk-okuri-search-subr-original):
* skk-macs.el (skk-string<=):
* skk-study.el (skk-study-save):
* skk.el (skk-search-jisyo):
Use `skk-string<' instead of `string<'.
* skk-hint.el (skk-hint-limit): Do not take matching of ?\;.
2007-04-10 Tetsuo Tsukamoto <[email protected]>
* skk-cus.el (skk-customize-group-skk): New function.
* skk-e21.el:
* skk-xemacs.el:
Add popup menu item for `skk-customize-group-skk'.
* skk-vars.el: Explicitly call `set-face-foreground' for skk-tut
faces.
(skk-kcode-charset):
(skk-tankan-search-key):
Also list in group skk-jisx0213.
(skk-treat-candidate-appearance-function): Allow a user to select
sample settings.
(skk-treat-candidate-sample1):
(skk-treat-candidate-sample2):
New functions.
* skk.el: Under GNU Emacs 20 and XEmacs 21.4, always ignore
`skk-tooltip-show-at-point'.
(skk-henkan-show-candidate-subr): Don't call
`skk-tooltip-show-at-point' for GNU Emacs 20 and XEmacs 21.4.
2007-04-09 Tetsuo Tsukamoto <[email protected]>
* skk-e21.el (skk-tooltip-show-at-point): More carefully place
tooltip frame, so that mouse pointer will not interfere near
bottom of the screen.
* skk-xemacs.el (skk-tooltip-show-at-point): Likewise.
2007-04-08 Tetsuo Tsukamoto <[email protected]>
* skk-comp.el (skk-comp-smart-find): Return nil unless
skk-abbrev-mode. Set skk-smart-find-file-path to nil when
skk-abbrev-mode is nil.
(skk-comp-lisp-symbol):
(skk-search-lisp-symbol):
New functions.
* skk-cus.el (skk-cus-update):
(skk-cus-save-file):
New functions.
(custom-save-variables): Advise to call `skk-cus-update'.
* skk-e21.el (skk-tooltip-show-at-point): Adjust mouse position in
non-follow mode.
* skk-vars.el: Custom-related modifications to skk-init-file,
skk-large-jisyo, skk-aux-large-jisyo, skk-jisyo, skk-backup-jisyo,
skk-show-icon, skk-use-kana-keyboard, and skk-tut-file. Define
groups skk-kanagaki and akk-nicola here.
(skk-comp-lisp-symbols): New variable.
2007-04-07 Tetsuo Tsukamoto <[email protected]>
* SKK-MK: Add APEL_DIR to load-path before loading install.el.
(SKK_DICTIONARIES): Add dictionaries.
* context-skk.el: Modify parent group for "context-skk" group.
* skk-annotation.el (skk-annotation-wait-for-input): Suppress
warning caused by `split-string' incompatibility.
(skk-annotation-wikipedia): For Wiktionary, downcase WORD when
needed.
(skk-annotation-wikipedia-1): Support for Translingual Symbols
such as Greek alphabet. Remove unnecessary local bindings.
* skk-comp.el (skk-comp-smart-find):
(skk-smart-find):
(skk-search-smart-find):
New functions.
* skk-e21.el: Suppress warnings for Emacs 21.
* skk-vars.el: Whole review and update for custom groups and
widget types.
(skk-smart-find-file-path):
(skk-smart-find-ignored-file-regexp):
(skk-comp-smart-find-files):
New variables.
* skk.el (skk-search-identity): New function.
(skk-completion-wrapper): Rename from anonymous function assigned
to [tab].
2007-04-07 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-wikipedia-1): Code cleanups.
Remove unnecessary variables and procedures.
Add "Acronym" as a Category.
* skk-vars.el (skk-annotation-wikipedia-sources):
(skk-annotation-wikipedia-key):
(skk-tooltip-parameters):
Fix for custom types.
2007-04-06 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-wikipedia-1): Support for
en.wiktionary.org and en.wikipedia.org. Use process buffer as
cache buffer.
(skk-annotation-wikipedia-cache): If cache for Upcased WORD is not
found, lookup cache for WORD itself (un-upcased).
(skk-annotation-wikipedia-region): If region is not active, pick
up word at point.
(skk-annotation-wikipedia-normalize-word): Don't upcase for
wiktionary.
(skk-annotation-insert): Go to the beginning of buffer after
inserting text.
* skk-e21.el (skk-tooltip-size): Abolish.
(skk-tooltip-resize-text): New function. Resize text when it is
too large.
* skk-vars.el (skk-tooltip-mouse-behavior): Defaults to `banish'
under XEmacs.
(skk-annotation-wikipedia-sources): add en.wikipedia and
en.wiktionary.
* skk-xemacs.el (skk-tooltip-show-at-point): Add missing support
for skk-tooltip-x-offset, skk-tooltip-y-offset and
skk-tooltip-mouse-behavior.
2007-04-05 Tetsuo Tsukamoto <[email protected]>
* skk-annotations.el (skk-annotation-find-url): Intended
`point-min', not `point-max'.
* skk-comp.el (skk-comp-get-regexp):
* skk-isearch.el (skk-isearch-search-string-regexp):
* skk.el (skk-kana-input):
(skk-add-rule):
(skk-delete-rule):
* tut-code/skk-mkmgk.el (skk-make-mazegaki-dic-1):
Use `string-to-list' instead of `string-to-char-list'.
* skk-e21.el (skk-e21-mouse-position): Refer to
skk-henkan-start-point only when skk-henkan-mode is active.
2007-04-04 Tetsuo Tsukamoto <[email protected]>
* skk-annotations.el (skk-annotation-wikipedia-1): Regexp fix.
Remove tables and bigs. Remove "A > B > C"-like hierarchy.
Modify the cache buffer name.
(skk-annotation-wikipedia-cache): Return pair of cached annotation
and the cache buffer name.
(skk-annotation-wait-for-input): Also browse wikipedia/wiktionary
URLs.
(skk-annotation-find-url): Discard URL that does not contain a
domain name.
(skk-annotation-wikipedia-normalize-word): New function.
2007-04-03 Tatsuya Kinoshita <[email protected]>
* skk-server.el (skk-search-server-1): Workaround for a problem
where Emacs tries to accept replies from SKK server too fast and
too often. Just call `sit-for' with 10 milliseconds interval
after `accept-process-output' to avoid the problem.
2007-04-03 Tetsuo Tsukamoto <[email protected]>
* skk-annotation.el (skk-annotation-url-package-available-p): Also
support Emacs 20.7 with unofficial MULE 4.1 patch.
(skk-annotation-find-and-show):
(skk-annotation-display-p):
(skk-annotation-wikipedia-region):
Clear existing messages.
* skk-e21.el (skk-tooltip-size): New function.
(skk-tooltip-show-at-point): Implement mouse pointer-indepent
decision of tooltip frame position.
(skk-tooltip-show-1): When skk-tooltip-mouse-behavior is follow,
refer to skk-tooltip-x-offset and skk-tooltip-y-offset instead of
default offset variables. Clear existing messages.
Use `mouse-avoidance-set-mouse-position'.
* skk-vars.el (skk-tooltip-mouse-behavior):
(skk-tooltip-x-offset):