-
Notifications
You must be signed in to change notification settings - Fork 73
/
ChangeLog
1639 lines (1162 loc) · 43 KB
/
ChangeLog
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
commit be4962c4a7c7fe740b2b2bc01126c50fea24935b
Author: mats cronqvist <[email protected]>
Date: Tue Feb 23 13:52:59 2016 +0100
v4.1.1
NEWS
commit d78741c08b8d5ac4289e19f6a4cca8f8e273bced
Author: mats cronqvist <[email protected]>
Date: Tue Feb 23 13:43:58 2016 +0100
fixed deprecation warning
erl_scan:token_info/2: deprecated (will be removed in OTP 19).
Changed code to use erl_scan:text instead.
Compile with -Dscan_token_info to get old behaviour.
src/fdoc.erl
commit da5be6af567d6e7ecaf6fb24f9c874a81a4d3be7
Author: Leo Liu <[email protected]>
Date: Thu Oct 1 22:32:06 2015 +0800
Replace sort* with cl-sort
elisp/erl-service.el
commit a28907229794b54b10f16ab24eacf11f79919ed9
Author: mats cronqvist <[email protected]>
Date: Wed Mar 11 18:49:45 2015 +0100
ignore emacs droppings
.gitignore
commit 573ae1b06d23dc2c37b0db486962d74082a4a9e2
Author: mats cronqvist <[email protected]>
Date: Tue Aug 11 13:10:48 2015 +0200
v4.1.0
AUTHORS
ChangeLog
NEWS
commit 17127a5efa512e212698f4ae63cda8430bbf0809
Author: mats cronqvist <[email protected]>
Date: Mon Aug 10 15:41:58 2015 +0200
remove some dead code
src/distel.erl
commit 0f56612f1f3e6d9e761a45e643e9a02b236b17a9
Author: mats cronqvist <[email protected]>
Date: Mon Aug 10 15:41:37 2015 +0200
use the cl-* functions
elisp/erlext.el
elisp/mcase.el
commit 29f30692554a373b8a0dc2e42e77fa59f12f9b92
Author: wcy123 <[email protected]>
Date: Fri Jul 24 23:06:21 2015 +0800
add edb command finish
elisp/edb.el
commit 240f1e1561a3b779912e05a8696704f92a6b5988
Author: Mads Hartmann Jensen <[email protected]>
Date: Tue May 26 11:01:36 2015 +0200
Make the code Emacs 25.0.50.1 compatible
Simply followed the deprecated warning shown by Emacs upon boot.
elisp/edb.el
commit 0ffb7b64cdfb8d7d7c5e3ad38d289d90a37d11b0
Author: Leo Liu <[email protected]>
Date: Wed Jun 4 22:27:54 2014 +0800
Use define-derived-mode and defvar-local for cleanup
Add item completion support to erl-show-process-info-item.
Fix improper use of let-binding buffer-read-only.
Replace (select-window (display-buffer ...)) with (pop-to-buffer ...).
Fix &erl-process-trace-loop not to move point.
elisp/derl.el
elisp/distel-ie.el
elisp/distel.el
elisp/edb.el
elisp/erl-service.el
elisp/erl.el
elisp/net-fsm.el
commit b63501359e7a4a11695e11a3c8c5e74f9f71a8ec
Author: mats cronqvist <[email protected]>
Date: Mon Oct 6 11:20:27 2014 +0200
v4.0.7
AUTHORS
ChangeLog
NEWS
commit 6ea7f874efccd0e2240ab750b94137f1cd7c87ca
Author: mats cronqvist <[email protected]>
Date: Mon Oct 6 11:17:27 2014 +0200
add 'release' targets in Makefile
Makefile
release.sh
commit 9eeaa6bbdfe70fd79f55cb74df3fe5a94cc6da4f
Author: Eric Liang <[email protected]>
Date: Fri Sep 12 15:42:56 2014 +0800
ping the node after choosing name to fix the lazy-connect strategy side effect like:
http://erlang.org/pipermail/erlang-questions/2009-September/046406.html
elisp/erl-service.el
commit d12a46b8f159321c58b89b10049f70bcf74c046d
Author: Leo Liu <[email protected]>
Date: Fri May 23 13:13:38 2014 +0800
erlext.el: Support smll- and large-bignums using math-bignum
elisp/erlext.el
commit 6bb004e6a1e4e39a42b96bab9d4376ff321c3359
Author: Leo Liu <[email protected]>
Date: Thu May 22 19:46:29 2014 +0800
erlext.el: Map elisp's hash table to/from erlang's map
elisp/erlext.el
commit d2cefa5c4d61212c4c11774ca6d5b7588bad1eeb
Author: Leo Liu <[email protected]>
Date: Thu May 22 15:48:40 2014 +0800
erlext.el: Add support for float and new_float
Rename empty-symbol to erlext-empty-symbol.
elisp/derl.el
elisp/erlext.el
commit c5eba7ab5c8d68f7783855b206d90adabcdfcedf
Author: Yury Antonov <[email protected]>
Date: Sat Apr 5 14:41:10 2014 +0600
install instructions missprint
INSTALL
commit 59450e6e1a5852031bb0b7f0f2c4f69b09b769e0
Author: Leo Liu <[email protected]>
Date: Fri Feb 28 17:47:31 2014 +0800
Give erl-search-definition a meaningful return value
New helper erl-flash-region and use it in erl-find-source to provide
visual hint for successful searches.
elisp/erl-service.el
commit fc339325bceaf153042c6955d7af7c946807f379
Author: mats cronqvist <[email protected]>
Date: Tue Feb 25 20:41:38 2014 +0100
v4.0.6
ChangeLog
NEWS
commit 39fd6c0c29862921b5c5c8dcae79a01c35d86739
Author: mats cronqvist <[email protected]>
Date: Tue Feb 25 20:41:19 2014 +0100
cosmetic
NEWS
release.sh
commit 33453bc493ed68918cdeab69495fb274c26746f6
Author: mats cronqvist <[email protected]>
Date: Tue Feb 25 20:34:50 2014 +0100
fix merge fail
release.sh
commit 8699da2014b507dc9925e975797585b629d96413
Author: mats cronqvist <[email protected]>
Date: Tue Feb 25 20:17:40 2014 +0100
v4.0.5
ChangeLog
NEWS
commit a8a7dff39e0bb4fa037b83cfec2a85901a1c6b6d
Author: mats cronqvist <[email protected]>
Date: Tue Feb 25 19:05:15 2014 +0100
cosmetic
AUTHORS
ChangeLog
release.sh
commit b8fbbd47de335c6dc25f8c2d6a165b238d3aa9d8
Author: mats cronqvist <[email protected]>
Date: Tue Feb 25 19:00:47 2014 +0100
fix AUTHORS generator
AUTHORS
ChangeLog
release.sh
commit 8815839b69044cee67f15c3c393b74537a36a323
Author: mats cronqvist <[email protected]>
Date: Tue Feb 25 18:43:26 2014 +0100
fix release.sh
AUTHORS
ChangeLog
release.sh
commit 36dc477f35e83610915b99df09ca402b5d4cbef3
Author: mats cronqvist <[email protected]>
Date: Tue Feb 25 18:38:46 2014 +0100
add release.sh script
AUTHORS
ChangeLog
release.sh
commit f1801380812899caa463c3cffaf65369f4361166
Author: Leo Liu <[email protected]>
Date: Sun Feb 16 12:42:09 2014 +0800
Rename erl-search-function to erl-search-definition
and support searching type definitions.
elisp/erl-service.el
commit 01e36d27371241fd9f7f575a023fa6f10caf9ee4
Author: Leo Liu <[email protected]>
Date: Fri Feb 14 19:21:52 2014 +0800
Remove mutual require between erl, derl and erl-service
Fix some buglets and compiler warnings.
Makefile
elisp/derl.el
elisp/epmd.el
elisp/erl-service.el
elisp/erl.el
elisp/net-fsm.el
commit 905696f76b65c965b751be21a46ba2670224cbae
Author: Leo Liu <[email protected]>
Date: Fri Feb 14 00:22:57 2014 +0800
Use add-hook for adding buffer-local hook
Replace edb-line-number with line-number-at-pos.
elisp/edb.el
elisp/erl-test.el
elisp/erl.el
commit b9aafc8c15965e39472a28b069019996995577c7
Author: Leo Liu <[email protected]>
Date: Tue Feb 18 17:12:17 2014 +0800
Fix #34: Remove current-prefix-arg from erl-target-node
elisp/erl-service.el
commit 5b6a75bc9eb21e85e88fbcad926e5cf55b1f84ae
Author: Leo Liu <[email protected]>
Date: Fri Feb 14 00:22:04 2014 +0800
Also export attach_loop/1 from distel.erl
src/distel.erl
commit 9d848ff865ef10957882d11d56c741158a2dc2e5
Author: Leo Liu <[email protected]>
Date: Sun Feb 9 13:01:33 2014 +0800
Replace -compile(export_all). with proper API exports
Cosmetic changes to -import(...). to avoid confusing indentation
engine.
src/distel.erl
commit 5b208fae7854b8f380a86d374701ba5dcfe20da2
Author: Leo Liu <[email protected]>
Date: Mon Jan 27 15:03:31 2014 +0800
Rename regname-to-bufname to erl-regname-to-bufname
elisp/erl.el
commit dde975a97b3a1bfb672317e66e2f5eb60e10f28f
Author: Leo Liu <[email protected]>
Date: Thu Jan 23 09:33:59 2014 +0800
Handle {put_chars, unicode, C} msg in distel:gl_proxy/1
Also notify unknown messages.
src/distel.erl
commit 3bd67a14454bdb94dee5eae452cb54a4b0672679
Author: Luca Favatella <[email protected]>
Date: Wed Jan 22 12:35:10 2014 +0000
Convert source file to UTF-8 in order to compile with Erlang R17
This commit replaces byte "f6" with bytes "c3 b6".
The snapshot of R17 pre-release used for compiling is 039ea3a.
The compilation succeeds also with R13B04 so hopefully this should not
introduce regressions for versions of Erlang older than R17.
See also http://erlang.org/doc/apps/stdlib/unicode_usage.html
src/otp_doc.erl
commit 119a22ca28fb96c744a40f82ceeea63cddc09154
Author: Leo Liu <[email protected]>
Date: Thu Jan 16 07:45:20 2014 +0800
Rename check-event to fsm-check-event for clarity
since 'event' is a native concept of emacs.
elisp/derl.el
elisp/epmd.el
elisp/net-fsm.el
commit 4fde192c07636e3cf809e2a81310ea51dc63c2a1
Author: Leo Liu <[email protected]>
Date: Tue Jan 14 19:50:29 2014 +0800
Hide edb internal functions and prefix break point accessors
elisp/edb.el
commit 0b47c392b682c1f6cb5cdd79e6f54c22f7246666
Author: Leo Liu <[email protected]>
Date: Wed Jan 15 22:24:36 2014 +0800
Teach erl-search-function to ignore arity when failed
to handle the case when the input is incomplete. Also use regexp
search since there might be space between the function NAME and (. See
the yaws source for examples.
Two trivial renames:
- rename process-list-mode to erl-process-list-mode.
- rename erl-cookie derl-cookie.
elisp/derl.el
elisp/erl-service.el
commit b17148e3e2487359bc0544059d5cd56acce6e8c9
Author: Leo Liu <[email protected]>
Date: Sun Jan 12 09:45:43 2014 +0800
Rename patmatch to mcase after its main macro
Consistently use mcase as prefix for all functions.
Makefile
elisp/edb.el
elisp/erl-service.el
elisp/erl.el
elisp/mcase.el
elisp/patmatch.el
commit b39c2e3cfcf739dfcdc9f58abb6412de64ae31f5
Author: Leo Liu <[email protected]>
Date: Sat Jan 11 20:33:35 2014 +0800
Also add erl- prefix to display-message-or-view
elisp/distel-ie.el
elisp/edb.el
elisp/erl-service.el
commit 9631a541eaee0fa02d3747f8bb79fecbaa83a847
Author: Leo Liu <[email protected]>
Date: Sat Jan 11 19:54:04 2014 +0800
More code cleanup
1. Add prefix erl- to process- functions and variables
Process is part of emacs so be clear and don't pollute that name
space.
2. Remove erpc which seems to be a develment helper but isn't
particularly better than the standard M-: (eval-expression).
3. Remove maybe-select-db-rebuild
elisp/erl-service.el
commit 0c0cbbef9e7ed13e5416da0704d8b4a559b8f950
Author: Leo Liu <[email protected]>
Date: Thu Jan 9 09:54:20 2014 +0800
Robustify erl-ping in case of non-symbol response
elisp/erl-service.el
commit e3f0d256ce2bf9e8b394cd81a2fa3a15dddf1cd9
Author: mats cronqvist <[email protected]>
Date: Wed Jan 8 10:10:33 2014 +0100
rename "call_graph" and "call-graph" -> "callgraph".
elisp/distel.el
elisp/erl-service.el
src/distel.erl
commit 1bf28161ceee6d2da0341116d0f4d6af21507f78
Author: mats cronqvist <[email protected]>
Date: Tue Jan 7 15:48:39 2014 +0100
remove whitespace
ChangeLog
INSTALL
INSTALL.WIN32
NEWS
README
README.ie-session
elisp/derl.el
elisp/distel-ie.el
elisp/distel.el
elisp/edb.el
elisp/epmd.el
elisp/erl-example.el
elisp/erl-service.el
elisp/erl-test.el
elisp/erl.el
elisp/erlext.el
elisp/net-fsm.el
elisp/patmatch.el
src/distel_ie.erl
src/fdoc.erl
src/otp_doc.erl
commit 2d02e195cd3fb2032015f831a4a6144ad7dc3ff5
Author: mats cronqvist <[email protected]>
Date: Tue Jan 7 15:42:10 2014 +0100
work around mac ".local" hostname suffix
elisp/erl-service.el
commit 3a90ddb58a6503523c69f8a89fb659ac007626fa
Author: mats cronqvist <[email protected]>
Date: Tue Jan 7 15:41:28 2014 +0100
introduce erl-rebuild-call-graph (bound to C-c C-d W)
elisp/distel.el
elisp/erl-service.el
src/distel.erl
commit 7360a013d2714eaa9542a00fd7ad564a9d058916
Author: Leo Liu <[email protected]>
Date: Tue Jan 7 01:52:59 2014 +0800
Fix #24: correct pattern in distel:src_args/3
src/distel.erl
commit 5b8de6f68f98cb66c4a02c0755cee3a0fe322bc5
Author: Leo Liu <[email protected]>
Date: Mon Dec 16 21:28:12 2013 +0800
Replace w3m-browse-url with browse-url for flexibility
Can still customise browse-url-browser-function to choose a browser.
elisp/erl-service.el
commit a81b2e520383c5e382fc8f3785b0041ac463c880
Author: Leo Liu <[email protected]>
Date: Mon Dec 16 21:05:44 2013 +0800
Remove unused functions and rename zf to edb-zf
elisp/edb.el
elisp/erl.el
commit 49f9295f7c8fd2d1af518065666e6eb92cb33861
Author: mats cronqvist <[email protected]>
Date: Fri Nov 15 15:49:56 2013 +0100
remove obsolete calls to regexp
src/fdoc.erl
commit 9242a6927473bdf15db77b68c84acf2e6bab9d58
Author: Magnus Henoch <[email protected]>
Date: Wed Feb 20 12:10:29 2013 +0000
fdoc: use erl_scan to find end of -spec
This handles multi-line type specs properly.
src/fdoc.erl
commit db9da9fa8f0e24aed67faab6cc611c7c9aba9aea
Author: Magnus Henoch <[email protected]>
Date: Wed Feb 20 11:00:39 2013 +0000
fdoc: treat -spec lines as comments
This makes C-c C-d d (erl-fdoc-describe) display documentation for
functions documented like:
%% foo() is a function.
-spec foo() -> ok.
foo() ->
ok.
src/fdoc.erl
commit ecc85817e7c021d9e8507213809a3a6a7eb61a11
Author: mats cronqvist <[email protected]>
Date: Mon May 28 04:17:30 2012 +0200
distes_ie missing support for list comprehensions in expression evaluator
src/distel_ie.erl
commit 6eae5247337f637ad6d7b6cb79451454da4c86d6
Author: mats cronqvist <[email protected]>
Date: Mon May 28 04:16:43 2012 +0200
distel_ie treats functions with same name but different arities as equal.
src/distel_ie.erl
commit 56d9011242eb53d7c804939ac38b73ad153d3e61
Author: mats cronqvist <[email protected]>
Date: Mon May 28 01:20:12 2012 +0200
export otp_doc:start/1
src/otp_doc.erl
commit ba9e375964d0fe612588bf21ac5937721d29b86b
Author: vagrant <[email protected]>
Date: Thu Apr 12 11:38:20 2012 +0000
undid a re-implementation of lists:member/2
src/distel.erl
commit 1c7740700133d84b4832b114a2a0a92a57a413a9
Author: vagrant <[email protected]>
Date: Tue Apr 10 19:30:52 2012 +0200
Apparently Mod:module_info(compile) changed return value in R15
src/distel.erl
commit 0156464a75dec1e694150a6917e233842cd6c2de
Author: Jannik Schürg <[email protected]>
Date: Mon Jan 2 21:05:21 2012 +0100
change obsolete variable warning (issue #5)
elisp/erlext.el
commit dc74f5f1a0fd5292a3e795ee840206c783bbccdb
Author: Lukasz Milewski <[email protected]>
Date: Fri Sep 2 00:25:21 2011 +0200
Fix hints for lists modules in R14B03
Few other modules might be affected too. At least erl-complet for
'lists:' returns full list of functions instead of members.
src/otp_doc.erl
commit 56780c5f7a4df7d6ae3a0309b9ef040f85b83d2f
Author: mats cronqvist <[email protected]>
Date: Tue Aug 9 19:36:08 2011 +0200
Merge branch 'master', remote-tracking branch 'wrangler/wrangler-synch'
commit c4dc7b5ef31d7b23ef47b9a542a0c92d11cfeb26
Author: Richard Carlsson <[email protected]>
Date: Wed Aug 3 12:07:03 2011 +0200
patches from wrangler
elisp/erl.el
elisp/erlext.el
src/distel.erl
commit 6ccf69a5cc2154a6f38da5fac6262a7da56f6724
Author: mats cronqvist <[email protected]>
Date: Sun Mar 13 16:30:30 2011 +0100
mentioned erlang.el in INSTALL
INSTALL
commit 06c0ee0193ddb31109b8103f03beee19ceedf6a2
Author: mats cronqvist <[email protected]>
Date: Fri Jan 28 14:32:52 2011 +0100
whitespace cleanup
src/distel.erl
commit 123ee65d3cedd808a4e3790fa196a50365ba2c13
Author: mats cronqvist <[email protected]>
Date: Mon Jan 24 17:38:45 2011 +0100
key binding C-c C-d A for erl-show-arglist
elisp/distel.el
commit 39b28a966d05b6b03f9bf3d5d6e39285bec26ed8
Author: mats cronqvist <[email protected]>
Date: Mon Jan 24 17:33:57 2011 +0100
implemented erl-show-arglist: print arglist for function-under-point
elisp/erl-service.el
commit 290f9595ae2d2f12d4aecc31a71847ad23460346
Author: mats cronqvist <[email protected]>
Date: Mon Jan 24 17:32:54 2011 +0100
find process in state "break" when attaching the debugger
elisp/edb.el
commit 9c204ab329d445f24b94a0dfc551ec020af9fe3d
Author: mats cronqvist <[email protected]>
Date: Mon Jan 24 17:32:05 2011 +0100
fixed changed file path for html docs
src/otp_doc.erl
commit d001ad7e54d17f47e0bd274a44a30c1fc758d0a9
Author: mats cronqvist <[email protected]>
Date: Thu Oct 28 12:45:54 2010 +0200
Merge branch 'master', remote branch 'bjnortier/master'
commit a1777fff3b4cbedc62c20b276366a1fc0547f797
Author: Benjamin Nortier <[email protected]>
Date: Wed Oct 27 12:45:46 2010 +0100
Applied path for R14B from distel issue on canonical repo
http://code.google.com/p/distel/issues/detail?id=24
elisp/epmd.el
commit b8047335bf107de05dfc16a161c55cf8ff3a0dd1
Author: mats cronqvist <[email protected]>
Date: Mon Sep 20 16:15:05 2010 +0200
R13 compatibility fixes
src/otp_doc.erl
commit ad6f168ba41c2333ebb1aeda6ebea4e44f6f8020
Author: mats cronqvist <[email protected]>
Date: Wed Apr 14 14:08:16 2010 +0200
fixed who_calls/R13 bug
elisp/erl-service.el
src/distel.erl
commit c6ed391a2fcb6492e48d0d513648d4710149641d
Author: mats cronqvist <[email protected]>
Date: Wed Feb 24 14:04:25 2010 +0100
ignores
.gitignore
Makefile
commit 52f06d1656fe513f2bd66b5a82cd0ea1a0b10e50
Author: mats cronqvist <[email protected]>
Date: Sun Dec 13 22:11:50 2009 +0000
rolled back rev 93, which broke everything...
ChangeLog
elisp/derl.el
elisp/erl-service.el
src/distel.erl
src/distel_ie.erl
commit 2ceeaff0408b7ee1de2af68b58549eb91bbe5851
Author: Luke Gorrie <[email protected]>
Date: Sun Aug 2 23:38:33 2009 +0000
Fixed problem where the first RPC to a node would fail in a common case.
ChangeLog
elisp/derl.el
elisp/erl-service.el
commit 7e51158aa14ea1fe5b6975e55b00c40c33c38e2d
Author: mats cronqvist <[email protected]>
Date: Thu May 7 19:29:03 2009 +0000
${erlc} was defined but not used
Makefile
commit 95747b12f4ab81d6514d13d68d2c7ce5d689f31e
Author: mats cronqvist <[email protected]>
Date: Tue May 5 10:09:21 2009 +0000
robustified the debugger
src/distel.erl
commit 7161ebd31c795a0e75c52fd0d6efb5294362e06d
Author: mats cronqvist <[email protected]>
Date: Fri Mar 6 17:37:50 2009 +0000
issue 10 fixed(?)
elisp/distel-ie.el
commit 0009d8bc76f1e65efd63249dbbbc58566f8d719e
Author: mats cronqvist <[email protected]>
Date: Sat Feb 21 15:36:27 2009 +0000
added (modified) patch from gentoo-people:
use distel-ebin-directory as path to find distel *.beam files
value of which defaults to old, hardcoded, path.
http://bugs.gentoo.org/259695
elisp/erl-service.el
commit 0bdfd90a7b1bbbf38717cb47a20266a92dd101fe
Author: mats cronqvist <[email protected]>
Date: Tue Feb 3 10:52:55 2009 +0000
rewrote the xref bits. who-calls no longer pulls in OTP.
imported all of lists.
standardized on fmt/2 for term_to_string functionality.
src/distel.erl
commit 2b02bab7bcc4abf8765a7b4889ae777a46b478e5
Author: mats cronqvist <[email protected]>
Date: Tue Feb 3 10:49:47 2009 +0000
removed M-/ from keymap. dabbrev-expand is apparently popular. use
M-? instead.
elisp/distel.el
commit f62961da837aeda773cefd80115e03c18872f7e4
Author: mats cronqvist <[email protected]>
Date: Fri Dec 19 13:14:33 2008 +0000
typo
src/otp_doc.erl
commit 1b98a1a16a5934274d3303e4bd56dfea0f00e1a9
Author: mats cronqvist <[email protected]>
Date: Fri Dec 19 09:29:24 2008 +0000
fixed dialyzer warnings (patch from Kostis Sagonas)
src/distel.erl
src/fdoc.erl
src/otp_doc.erl
commit b50515f4cce23d1ff770b3687bfe79433e0d6d6c
Author: mats cronqvist <[email protected]>
Date: Thu Dec 18 12:52:41 2008 +0000
ChangeLog
commit a45deb83769f9e6cea858d2a66038ba1103bfc21
Author: mats cronqvist <[email protected]>
Date: Thu Dec 18 12:51:12 2008 +0000
enws
NEWS
commit 1f36cf2d6d5341553f17d3bf4b029c4c80d14201
Author: mats cronqvist <[email protected]>
Date: Thu Dec 18 12:34:53 2008 +0000
ChangeLog
commit 8398bcdeaeb10d73966c4fce56afca3ce21ea270
Author: mats cronqvist <[email protected]>
Date: Wed Dec 17 13:38:16 2008 +0000
the strategy for completion is this; try otp_doc first, since it's
faster. if it comes up empty, xref should kick in. alas, otp_doc was
signalling failure to find by returning {ok,[]} instead of {error,R}.
src/otp_doc.erl
commit 6442312ab6306c24a2ee94e71e4db3fc113cbc10
Author: mats cronqvist <[email protected]>
Date: Tue Dec 16 22:57:09 2008 +0000
deleting old cruft
ebin/.cvsignore
commit 84c982478585690f346964afc1bffed7729208c7
Author: mats cronqvist <[email protected]>
Date: Tue Dec 16 22:56:09 2008 +0000
catching to avoid terminating server
src/otp_doc.erl
commit 9a340f3a84069a4a6ad5849f392958f8106c8edc
Author: mats cronqvist <[email protected]>
Date: Tue Sep 23 15:09:36 2008 +0000
xemacs doesn't ship with ewoc.el. documented this, with a pointer to savannah.
INSTALL
commit feabedb7b57eaae67c050ee0d9f14b9ebb50f210
Author: mats cronqvist <[email protected]>
Date: Mon Sep 22 08:21:35 2008 +0000
tagged version 4.01
Makefile
commit 488b16d6f49bf79c9384cd8596272c63de052c5c
Author: mats cronqvist <[email protected]>
Date: Fri Sep 5 09:08:30 2008 +0000
the "make install" target and "erl-load-backend" disagreed on where the beam
files where supposed to live. changed the makefile and updated the INSTALL
file.
INSTALL
Makefile
elisp/distel-ie.el
src/otp_doc.erl
commit 92f9634f9466b3cabb5551b61cbd2bdd735941fe
Author: mats cronqvist <[email protected]>
Date: Thu Jul 31 13:52:54 2008 +0000
logged changes
ChangeLog
commit 23dab48b1290bc777a9ef54c86b1df2f78a2c0af
Author: mats cronqvist <[email protected]>
Date: Thu Jul 31 13:46:23 2008 +0000
fixed some compiler warnings
README
src/distel_ie.erl
commit da8d62769de3d812279d4694038f460b0df2e137
Author: mats cronqvist <[email protected]>
Date: Thu Jul 31 13:25:37 2008 +0000
some cosmetic changes
Makefile
Makefile.in
NEWS
README
src/distel.erl
commit 9b6bb242d03c6dab0eaba3810caace141d283ed1
Author: mats cronqvist <[email protected]>
Date: Thu Jul 31 13:15:19 2008 +0000
deleted empty dir
commit 5ebf4417dd1cd02e2fe12e29d73222bb2b41110d
Author: mats cronqvist <[email protected]>
Date: Thu Jul 3 09:08:32 2008 +0000
handled special case anchors in "erlang" module
src/otp_doc.erl
commit 4c9fd2c3b890e21fa7b03ced051e11ae67a845a1
Author: mats cronqvist <[email protected]>
Date: Thu Jun 26 09:09:14 2008 +0000
some more doc. added some text to some error messages.
AUTHORS
README
elisp/derl.el
elisp/erl.el
commit 7c48f5b94415b80b19189598bf69960cd1ef6a16
Author: mats cronqvist <[email protected]>
Date: Wed Jun 25 18:39:47 2008 +0000
updated ancient docs.
heaven knows why. noone reads the friggin' manual anyways.
INSTALL
INSTALL.WIN32
commit d15406e7f2f7b7c1a8ce4d72fecddd02b68965e4
Author: mats cronqvist <[email protected]>
Date: Wed Jun 25 17:05:09 2008 +0000
updated the docs from its mint OTP R8 condition...
README
elisp/distel.el
elisp/erl-service.el
commit 3ed7df784ee891349e22fce0c25a62d509f748f8
Author: mats cronqvist <[email protected]>
Date: Fri May 23 13:14:57 2008 +0000
yet another edge case in pre-R11 html handled
ChangeLog
src/otp_doc.erl
commit cdfbd98b6a2142740a2e26732f9b57b991063bbc
Author: mats cronqvist <[email protected]>
Date: Fri May 23 11:42:52 2008 +0000
when looking for a link; if you get several hits, and one is exact, you get that one.
ChangeLog
src/otp_doc.erl
commit 7b9f3100518013aaca8fde711801cc0d2517a164
Author: mats cronqvist <[email protected]>
Date: Wed May 21 14:25:58 2008 +0000
failed on pre-R12 broken HTML lines
src/otp_doc.erl
commit 275c06a5a36dee99a86ff4e86a96987b7600fedb
Author: mats cronqvist <[email protected]>
Date: Mon May 19 13:57:35 2008 +0000
fixed a typo in otp_doc
deleted .cvsignore files
doc/.cvsignore
elisp/.cvsignore
src/.cvsignore
src/otp_doc.erl
commit efb64f146ea02d09c04d07a793dfe3087044b59f
Author: mats cronqvist <[email protected]>
Date: Mon May 19 13:53:56 2008 +0000
fixed a typo in otp_doc
checked in html docs and gorries PDF
doc/distel.texi
doc/distel/Applications.html
doc/distel/Attach-Buffer.html
doc/distel/Basic-Commands.html
doc/distel/Completion.html
doc/distel/Conventions.html
doc/distel/Debugger.html
doc/distel/Documentation.html
doc/distel/Evaluation.html
doc/distel/Interactive-Sessions.html
doc/distel/Introduction.html
doc/distel/Monitor-Buffer.html
doc/distel/Principles.html
doc/distel/Process-Manager.html
doc/distel/Profiler.html
doc/distel/Programming-Aids.html
doc/distel/Refactoring.html
doc/distel/Saving-and-Restoring.html
doc/distel/Synchronising-Breakpoints.html
doc/distel/Tags.html