-
Notifications
You must be signed in to change notification settings - Fork 162
/
ChangeLog
6564 lines (4049 loc) · 204 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
2024-01-25 ESS Maintainers <[email protected]>
* Version 24.01.0 released.
2018-11-10 ESS Maintainers <[email protected]>
* Version 18.10.2 released.
2018-10-23 ESS Maintainers <[email protected]>
* Version 18.10-1 released.
2018-10-20 ESS Maintainers <[email protected]>
* Version 18.10 released.
2018-07-17 Rodney Sparapani <[email protected]>
* lisp/ess-sas-l.el (SAS-log-mode) and
(SAS-listing-mode): add (buffer-disable-undo)
since these buffers are buffer-read-only and
they can get quite large. Furthermore, when
they are re-generated/reverted/reloaded with
(ess-revert-wisely) & friends; these large buffers
trigger an error: undo-outer-limit exceeded.
2017-11-13 ESS Maintainers <[email protected]>
* Version 17.11 released.
2016-10-22 ESS Maintainers <[email protected]>
* Version 16.10 released.
2016-05-07 ESS Maintainers <[email protected]>
* Version 16.04 released.
2015-12-11 ESS Maintainers <[email protected]>
* Version 15.09-2 released.
2015-10-26 ESS Maintainers <[email protected]>
* Version 15.09-1 released.
2015-09-24 ESS Maintainers <[email protected]>
* Version 15.09 released.
2015-04-23 ESS Maintainers <[email protected]>
* Version 15.03-1 released.
2015-03-31 ESS Maintainers <[email protected]>
* Version 15.03 released.
2014-09-13 ESS Maintainers <[email protected]>
* Version 14.09 released.
2013-12-07 ESS Maintainers <[email protected]>
* Version 13.09-1 released.
2013-09-27 ESS Maintainers <[email protected]>
* Version 13.09 released.
2013-05-14 ESS Maintainers <[email protected]>
* Version 13.05 released.
2013-01-12 ESS Maintainers <[email protected]>
* Version 12.09-2 released.
2012-12-21 ESS Maintainers <[email protected]>
* Version 12.09-1 released.
2012-09-24 ESS Maintainers <[email protected]>
* Version 12.09 released.
2012-06-07 ESS Maintainers <[email protected]>
* Version 12.04-4 released.
2012-06-01 ESS Maintainers <[email protected]>
* Version 12.04-3 released.
2012-05-11 ESS Maintainers <[email protected]>
* Version 12.04-2 released.
2012-04-05 ESS Maintainers <[email protected]>
* Version 12.04 released.
2012-03-30 ESS Maintainers <[email protected]>
* Version 12.03 released. New numbering scheme.
2011-07-30 ESS Maintainers <[email protected]>
* Version 5.14 released.
2011-06-20 Henning Redestig <[email protected]>
* etc/ess-roxy-tests.R (trickyInArgsComments): small examples I
used to try out ess-roxy
2011-05-03 Rodney Sparapani <[email protected]>
* doc/unixlike.texi (Unix installation):
* Makeconf (LISPDIR):
Installing everything into site-lisp is sloppy; better to create
an ess sub-directory and install there.
2011-04-26 Rodney Sparapani <[email protected]>
* doc/help-sas.texi (ESS(SAS)--TAB key): removing all references
to uncommenting ess-site.el code since we moved away from that
several years ago, however, the vestiges still linger (OK, but
isn't that what vestiges do?)
2011-03-07 Stephen Eglen <[email protected]>
* doc/help-s.texi (ESS(S)--Editing files): Document calling R-mode
directly.
2011-03-01 Stephen Eglen <[email protected]>
* doc/ess.texi (Debugging R): New node.
2011-02-28 Rodney Sparapani <[email protected]>
* doc/requires.texi: update BUGS info and
include texi2dvi WARNING
2011-02-03 ESS Maintainers <[email protected]>
* Version 5.13 released.
2010-12-15 Dirk Eddelbuettel <[email protected]>
* etc/pkg-Maintainers (Debian): updated
2010-11-09 Rodney Sparapani <[email protected]>
* doc/announc.texi (Announce): \
* doc/currfeat.texi (Current Features): \
* doc/requires.texi (Requirements): \
* doc/stabilty.texi (Stability): \
Minor tweaks to bring it slightly more up-to-date.
2010-11-08 ESS Maintainers <[email protected]>
* Version 5.12 released.
2010-08-13 Stephen Eglen <[email protected]>
* doc/ess.texi (Org): New section describing interaction with Org
mode, contributed by Dan Davison and Eric Schulte.
2010-07-13 ESS Maintainers <[email protected]>
* Version 5.11 released.
2010-06-08 ESS Maintainers <[email protected]>
* Version 5.10 released.
2010-05-21 ESS Maintainers <[email protected]>
* Version 5.9.1 released.
2010-05-21 ESS Maintainers <[email protected]>
* Version 5.9 released.
2010-04-25 Henning Redestig <[email protected]>
* doc/ess.texi (Roxygen): added documentation for ess-roxy
2010-04-08 Rodney Sparapani <[email protected]>
* doc/ess.texi (Top): Cosmetic change to see
if the web page is updating like it should
2010-03-03 ESS Maintainers <[email protected]>
* Version 5.8 released.
2009-12-07 ESS Maintainers <[email protected]>
* Version 5.7.1 released.
2009-12-07 ESS Maintainers <[email protected]>
* Version 5.7 released.
2009-12-04 ESS Maintainers <[email protected]>
* Version 5.6 released.
2009-11-22 Stephen Eglen <[email protected]>
* doc/help-s.texi (iESS(S)--Inferior ESS processes): Add
documentation about how exec-path determines which directories are
searched to find R versions.
2009-10-07 ESS Maintainers <[email protected]>
* Version 5.5 released.
2009-10-02 Martin Maechler <[email protected]>
* doc/{windows|unixlike}.texi: fix *wrong* e-mail for ess-help
2009-06-08 ESS Maintainers <[email protected]>
* Version 5.4 released.
2009-05-27 Rodney Sparapani <[email protected]>
* Makefile (downloads): new target for
creation of .tgz and .zip only
2009-04-22 Stephen Eglen <[email protected]>
* doc/ess.texi (TAGS): Describe R CMD rtags.
(TAGS): Expand on documentation, thanks to feedback from Martin.
2009-03-05 Rodney Sparapani <[email protected]>
* doc/newfeat.texi, doc/help-bugs.tex, doc/help-jags.texi:
ESS[BUGS] and ESS[JAGS]: typing = now results in <-
2009-02-23 Rodney Sparapani <[email protected]>
* Makeconf: update LISPDIR, INFODIR, ETCDIR
for XEmacs. Use the modern default
/usr/local/share/xemacs rather than the
deprecated /usr/local/lib/xemacs. Also,
default to the site-packages subdirectory
rather than xemacs-packages, this allows
you more freedom to update the SUMO packages
without touching your ESS installation and
vice versa.
2009-01-23 ESS Maintainers <[email protected]>
* Version 5.3.11 released.
2009-01-21 Rodney Sparapani <[email protected]>
* Makefile (all install clean distclean): @for
loop throws away exit code, probably due to cd ..
which always returns 0; @for no longer used
2009-01-13 Rodney Sparapani <[email protected]>
* doc/windows.texi and doc/unixlike.texi
(Installation): replace fake double quotes
in examples with real double quotes
2009-01-12 Rodney Sparapani <[email protected]>
* doc/Makefile, doc/ess.texi, doc/readme.texi,
doc/windows.texi, doc/unixlike.texi (Installation):
new simplified installation instructions for Windows
and Unix/Unix-like including Mac OS X (major changes
now complete)
2009-01-07 Rodney Sparapani <[email protected]>
* doc/Makefile (TEXISRC): add help-jags.texi to list
* doc/help-jags.texi
(ESS(JAGS)--Log files):
the "log" of the run is now .jog (like BUGS which
is .bog); .out created too many problems since the BOA
output files have that extension as well
(ESS(JAGS)--Model files):
adding 2 new local variables: ess-jags-burnin and
ess-jags-update. ESS[BUGS] has similar variables, but
the modern defaults are an order of magnitude bigger, so
it seemed like creating new variables was warranted
2008-12-17 Rodney Sparapani <[email protected]>
* doc/windows.texi (Microsoft Windows installation):
this file will replace the Windows portion of inst_tar.texi
2008-12-15 Rodney Sparapani <[email protected]>
* doc/Makefile (install-other-docs): fixing yet another
bug related to DOCDIR, was there no testing at all before
foisting this on us?
2008-12-09 Rodney Sparapani <[email protected]>
* Makeconf and doc/Makefile (DOCDIR): belatedly document
and defensively create
2008-12-03 Rodney Sparapani <[email protected]>
* Makeconf and doc/readme.texi (README re-organization):
Add TOC for plaintext format only, requires re-defining MAKETXT
accordingly.
2008-12-02 Rodney Sparapani <[email protected]>
* doc/readme.texi and doc/Makefile (README re-organization):
re-arrange so that installation information comes in the
4/5th sections rather than much further down (7/8th); also
massaged wording in the intro which no longer requires as much
perl (which I never really understood since I don't speak perl;
shall we stick to what we all know: e-lisp/make/texi/not perl/etc.)
2008-11-14 Stephen Eglen <[email protected]>
* doc/ess.texi (Indenting): Describe roxygen
2008-07-28 ESS Maintainers <[email protected]>
* Version 5.3.8 released.
2008-04-10 ESS Maintainers <[email protected]>
* Version 5.3.7 released.
2007-09-13 ESS Maintainers <[email protected]>
* Version 5.3.6 released.
2007-08-15 ESS Maintainers <[email protected]>
* Version 5.3.5 released.
2007-07-20 Stephen Eglen <[email protected]>
* doc/help-s.texi (iESS(S)--Inferior ESS processes): Document R-newest.
2007-04-26 ESS Maintainers <[email protected]>
* Version 5.3.4 released.
2006-12-16 Martin Maechler <[email protected]>
* doc/ess.texi (Help): do look up the 's *' bindings and mention
differences R <-> S(-plus)
2006-09-26 ESS Maintainers <[email protected]>
* Version 5.3.3 released.
2006-09-19 ESS Maintainers <[email protected]>
* Version 5.3.2 released.
2006-06-03 ESS Maintainers <[email protected]>
* Version 5.3.1 released.
2006-04-07 ESS Maintainers <[email protected]>
* Version 5.3.0 released.
2006-04-07 Martin Maechler <[email protected]>
* doc/refcard/refcard.tex: update for ESS 5.3.0
2006-02-09 Anthony Rossini <[email protected]>
* doc/newfeat.texi: documentation for
@code{ess-use-inferior-program-name-in-buffer-name},
2006-02-07 ESS Maintainers <[email protected]>
* Version 5.2.12 released.
2006-01-06 Stephen Eglen <[email protected]>
* doc/ess.texi (Help with emacs): New section, referring people to
Emacswiki and FAQs.
2005-11-14 ESS Maintainers <[email protected]>
* Version 5.2.11 released.
2005-09-09 ESS Maintainers <[email protected]>
* Version 5.2.10 released.
2005-08-30 ESS Maintainers <[email protected]>
* Version 5.2.9 released.
2005-05-12 ESS Maintainers <[email protected]>
* Version 5.2.8 released.
2005-04-18 ESS Maintainers <[email protected]>
* Version 5.2.7 released.
2005-03-14 ESS Maintainers <[email protected]>
* Version 5.2.6 released.
2005-02-01 ESS Maintainers <[email protected]>
* Version 5.2.5 released.
2005-01-06 ESS Maintainers <[email protected]>
* Version 5.2.4 released.
2004-12-31 Stephen Eglen <[email protected]>
* doc/inst_tar.texi (Unix installation): Remove note regarding GNU
Make, as this is relevant only for developers, and so does not
need to be in the user's guide [the shorter the installation
instructions, the better!]
2004-12-29 Stephen Eglen <[email protected]>
* doc/newfeat.texi: Mention changes to completion.
* doc/inst_tar.texi (Unix installation): Comment out optional step
about creating database files for slow computers; delete later.
* doc/ess.texi (Completion details): Comment out note about slow
completion on old systems; delete later.
(Imenu): Add note about imenu regexps.
2004-10-27 Martin Maechler <[email protected]>
* doc/ess.texi: added Debian patches from Camm Maguire
* lisp/* : dito for six files
2004-09-21 ESS Maintainers <[email protected]>
* Version 5.2.3 released.
2004-07-27 Martin Maechler <[email protected]>
* Moved from CVS to Subversion
2004-07-08 ESS Maintainers <[email protected]>
* Version 5.2.2 released.
2004-06-28 ESS Maintainers <[email protected]>
* Version 5.2.1 released.
2004-05-22 Stephen Eglen <[email protected]>
* doc/ess.texi (Interactive ESS): At the start of the chapter on
iESS, introduce a few general terms before getting into specifics.
2004-05-17 Stephen Eglen <[email protected]>
* doc/ess.texi: Few typos; add brief description of Imenu and
document the 'l' key when viewing help files.
2004-05-05 Stephen Eglen <[email protected]>
* doc/ess.texi (winjava): Put empty lines around example to get
proper formatting.
2004-05-04 Stephen Eglen <[email protected]>
* doc/help-s.texi (ESS-help--assistance with viewing help): Refer
to Help chapter.
* doc/ess.texi (Multiple ESS processes): ess-request-a-process not
bound to C-c C-k. Commented out some doc for
ess-plain-first-buffername.
(System dependent): Change of section name from "Other variables
..." to "Variables ...".
2004-04-28 Stephen Eglen <[email protected]>
* doc/ess.texi: Document winjava, inferior-ess-own-frame and
ess-help-own-frame.
2004-02-22 Stephen Eglen <[email protected]>
* doc/bugrept.texi: Describe how to make a *Backtrace* buffer.
2004-02-19 Stephen Eglen <[email protected]>
* doc/ess.texi (ESS processes on Remote Computers): add brief
notes on how to get a ssh buffer. Note that URL currently spills
into right margin in ess.pdf; anyway to prevent that?
2002-11-29 Stephen Eglen <[email protected]>
* doc/ess-defs.texi: New file to provide macros for formatting R,
S, SPLUS.
* doc/ess.texi: Quite a few updates to the documentation:
Include ess-defs.texi for @Sl macro.
Add Stephen to author list.
Remove bold from ESS/S.
Remove Variable and command index (had just two entries).
Use "X window system" or "X11" rather than "X-windows" (see `man X').
Add section on editor=emacsclient.
Change "more historic"->"older"
Correct exit() entry in the variable and command index.
Remove multiple references to Emacs/XEmacs differences in
.emacs/init.el for init file.
2002-08-07 Martin Maechler <[email protected]>
* VERSION:
new version -- Makefile did not commit (aarggh)..
* lisp/Makefile, Makefile:
more Makefile tweaks: lisp/ess-cust.el with proper version number must be committed (in time before tagging etc)
* lisp/ess-cust.el:
new version -- Makefile did not commit (aarggh)..
* info/ess.info-3, info/ess.info-4, info/ess.info-1, info/ess.info, info/ess.info-2:
Updating info for new version
* ANNOUNCE, README:
Updating README, ANNOUNCE for new version
* doc/newfeat.texi:
prepare for release of 5.1.23 (with *correct* version number)!
* Makefile:
dist: also update lisp/ess-cust.el
rel : also `tag'
2002-08-06 rsparapa <[email protected]>
* info/ess.info-1:
Updating info for new version
* ANNOUNCE, doc/authors.texi, doc/getting.texi, doc/inst_cvs.texi, doc/newfeat.texi, doc/requires.texi, info/ess.info-1, info/ess.info, info/ess.info-2, info/ess.info-3, info/ess.info-4, README:
docs: I was trying to create a PDF version of ANNOUNCE with
texi2dvi and dvipdf (is there a better way?). And, certain
functions like @email and @code betray unsightly behavior.
I replaced @email with @uref:mailto and @code with @display.
You may note that a better translation of @code would be
@example, but @example misbehaves as well. @display doesn't
make a difference for info or HTML, but it does for PDF.
However, there doesn't appear to be an alternative for the
moment. Another bug, is texi2html ignores the @enumerate
argument (besides mishandling @macro statements). Oh joy!
2002-08-05 rsparapa <[email protected]>
* ANNOUNCE, doc/announc.texi, doc/Makefile, doc/readme.texi, README, info/ess.info-1:
docs: some final minor changes to docs before release. Also,
attempted to address Martin's concern in doc/Makefile with
respect to install. Now, you can differentiate between
making in the doc directory and installing elsewhere as the
documentation indicates. The target install has returned for
info files only.
2002-08-02 rsparapa <[email protected]>
* doc/dir, doc/help-sas.texi, doc/Makefile, info/ess.info-1, info/ess.info, README, info/ess.info-2:
info: Rich's comment made me realize that we may also need
to "install" the dir file. So, I changed the Makefile to:
$(INFODIR)/ess.info: $(TEXISRC)
@echo "making Info documentation..."
$(MAKEINFO) ess.texi
$(INSTALL) ess.info* $(INFODIR)
test -f $(INFODIR)/dir || $(INSTALL) dir $(INFODIR)
I suppose that a more sophisticated approach could be taken,
but this is probably good enough for now. I believe that
all issues that I was working on are now complete. I'm going
on vacation on 8/7 and then to JSM the following week, but I
should have e-mail and internet access the whole time. Did
someone once say "Release early and release often"?
2002-08-01 rsparapa <[email protected]>
* info/dir:
dir: I discovered what the problem is with @direntry and
GNU Emacs 21. Apparently, the functionality differs
between XEmacs and Emacs. Under XEmacs, the @direntry
has precedence over the dir file. Emacs appears to be
just the opposite. So, I edited the dir file by hand.
Not sure where this file comes from. info/emacs does
not create this file in a directory that doesn't
already have one. The file doesn't seem to be
created by makeinfo and that's where the problem lies.
There is no synchronization between @direntry and dir
once dir has been created (however that happens). The
best solution at present is to keep the two in synch
by hand. Which really isn't that big of a deal since
we are only talking about one line being identical in
dir and ess.texi
* doc/ediff-sas.gif, doc/ess-demo.jpg, doc/ess-intro.pdf, doc/ess-intro.tex, doc/font-cor-s.gif, doc/font-cor-s.jpg, doc/font-incor-s.gif, doc/font-incor-s.jpg, doc/hilock-sas.gif, doc/Makefile, README, fontlock-test/baseball.sas, info/ess.info, info/ess.info-1, info/ess.info-2, info/ess.info-3, info/ess.info-4:
docs: committing files based on recent discussion
2002-07-31 rsparapa <[email protected]>
* doc/ess.texi, README:
HTML docs: a few tweaks to the texinfo to create a
reasonable HTML table of contents
* doc/ess.texi, README:
doc bug: I was testing out the info docs and I realized that
the "Detailed Node List" and the actual nodes for Installation
were different. In this case, it would lead you to believe
that there weren't any relevant topics in the Installation
section because you see the "Detailed" list first, but there's
nothing on it. I suppose you could carefully check each "Detailed"
vs. actual node combination, but that would be time-consuming and
prone to failure. And, I also realized that nobody would want a
100 item list when they can drill-down from a 10 item list anyways.
So, I was lazy and just commented out the entire "Detailed Node List".
* ANNOUNCE, doc/Makefile, README, doc/announc.texi, doc/authors.texi, doc/credits.texi, doc/ess.texi, doc/help-sas.texi, doc/inst_tar.texi, doc/readme.texi, info/ess.info-1, info/ess.info, info/ess.info-2, info/ess.info-3, info/ess.info-4:
more doc changes: Where should I begin? I realized that having info files might
not be helpful if you didn't already have ESS installed. So, I decided to
create HTML docs and put them @ software.biostat.washington.edu:/ess/doc/html
But, texi2html doesn't work with version.texi. After pulling my hair out, I
decided to read the documentation. Guess what? texi2html doesn't support
@macro commands. So, instead of @essver{}, I replaced those references by
@include ../VERSION which seems to work. Of course, this was after I re-did the
doc/Makefile thinking there was something wrong in there. The HTML docs are now
on the net. And, lots of other "improvements" to the docs.
* doc/ess.texi, info/ess.info, README, info/ess.info-1, info/ess.info-2, info/ess.info-3, info/ess.info-4:
info: running some long SAS jobs, ZZZZZzzzzZZZZZ...
Meanwhile, re-wrote parts of the intro and re-arranged some of the
documentation categories; boy is that fun. NOT! Promoted "Help for
the S family" and "Help for SAS" to main categories so you
don't have to poke around so long. One bugaboo that remains
with GNU Emacs 21.1-21.3 is the @direntry which is set to:
* ESS: (ess). Emacs Speaks Statistics (S/S+/R, SAS, BUGS, Stata, XLisp-Stat).
but, Emacs sadly reports: ESS Version 5.x.y (was: S-mode).
This works fine on XEmacs 21.4.8 and I'm using texinfo 4.2
* lisp/ess-utils.el:
ess-kermit-get, ess-kermit-send
I had to replace (shell) with ess-sas-goto-shell; maybe we should
generalize ess-sas-goto-shell and ess-sas-shell-buffer in ess-utils.el too
2002-07-30 rsparapa <[email protected]>
* lisp/Makefile:
lisp/Makefile: essa-sas.el should not be compiled since it is required
by essl-sas.el and therefore, already compiled
* lisp/Makefile:
lisp/Makefile: fixed a bug testing whether a directory is .
2002-07-29 rsparapa <[email protected]>
* doc/ess.texi, doc/help-sas.texi, info/ess.info, info/ess.info-1, info/ess.info-3, README, info/ess.info-4:
Help for SAS: more updates and fixes; now ready for release
2002-07-27 rsparapa <[email protected]>
* doc/Makefile, Makefile:
Makefile: changed target info to
the more descriptive and appropriate docs
2002-07-26 rsparapa <[email protected]>
* doc/ess.texi, doc/help-sas.texi:
ESS[SAS] info documentation: lots of minor changes that
should make it a better intro as well as a more complete and
correct manual
* doc/Makefile, lisp/Makefile, Makeconf, Makefile:
more Makefile mods: made INSTALL comments more explicit
and removed install as the target from main Makefile, it
was only present in the lisp Makefile in any case
* Makefile:
main Makefile: realclean target deleted; doc and lisp
Makefile's don't have it anyway; ESSVERSIONDIR changed
to ESSDIR
* Makeconf:
Makeconf: made 2 comments more explanatory
* doc/Makefile, Makeconf, Makefile, doc/newfeat.texi:
more Makefile/Makeconf improvements: I think this should do it
for the next release. Enjoy!
* info/ess.info-1, info/ess.info:
Updating info for new version
* ANNOUNCE, README:
Updating README, ANNOUNCE for new version
* Makeconf, README, doc/Makefile, info/ess.info-1, info/ess.info, info/ess.info-2, info/ess.info-3, info/ess.info-4, lisp/Makefile:
more Makefile changes: Apparently, we had two different methods for
replacing old version numbers with new ones. For some reason, the
old method based on perl stopped working. So, we created a new
method based on @essver{}. However, the old version targets and
dependencies remained. I have no idea what kind of weirdness
resulted from that. Just in case, I'm removing the old method.
2002-07-25 rsparapa <[email protected]>
* lisp/essa-sas.el:
ESS[SAS]: ess-sleep-for now defaults to 5 seconds on Windows
only (which was where the problem was initially)
* lisp/essa-sas.el:
ESS[SAS]: fixed bug in
ess-sas-submit-sh for Kermit file transfers; noticed that ess-kermit-
functions call (shell) when it probably should be ess-sas-goto-shell
2002-07-24 rsparapa <[email protected]>
* doc/Makefile, fontlock-test/baseball.sas, Makeconf, Makefile, VERSION:
Makefile happy-land: I think I finally figured this maze out.
We'll see when we try to release 5.1.21
* lisp/ess-utils.el:
ess-utils.el: fixed a bug in ess-save-and-set-local-variables;
more exhaustive testing later tonight
* lisp/essa-sas.el:
ESS[SAS]: ess-save-and-set-local-variables is now called
from ess-sas-submit-sh, ess-sas-submit-windows and
ess-sas-submit-mac rather than save-buffer which formerly
appeared in ess-sas-submit. Not, sure what to do with
ess-sas-submit-iESS, but it should not be called in
ess-sas-submit-region. Also, now called in
ess-sas-data-view so you can take advantage of the
recently added ess-sas-data-view-fsview-statement
buffer-local variable.
* lisp/ess-utils.el:
ess-utils.el: added 2 new functions
ess-search-except: searches forward for a regexp, stores as match 1
and optionally, ignores results that also match a second regexp parameter,
and optionally, searches backward for a third non-nil parameter
ess-save-and-set-local-variables: if a buffer is modified, save the
buffer and if Local Variables are defined, update them with revert
returning t if buffer was modified and nil otherwise
* lisp/essa-sas.el:
ESS[SAS], ess-sas-data-view: Now, I'm adding features just for myself.
I've always wanted the capability to add a PROC FSVIEW statement to an
ess-sas-data-view call, but I just never got around to it. You can
configure it with the string ess-sas-data-view-fsview-statement. Also,
you can now change the PROC FSVIEW command itself with
ess-sas-data-view-fsview-command and I renamed ess-sas-data-view-options
to ess-sas-data-view-submit-options to make it more clear what it does
(i.e. so you don't confuse -options with -fsview-command).
* Makeconf, doc/Makefile, info/ess.info-1, info/ess.info, info/ess.info-2, info/ess.info-3, Makefile, info/ess.info-4, lisp/Makefile:
Makeconf/Makefile tweaking: still need to re-organize doc
Makefile which is currently in the main Makefile and the
doc Makefile
2002-07-23 rsparapa <[email protected]>
* Makeconf:
Makeconf: minor improvements in anticipation of a more
important role for this method of installing ESS
* lisp/make-regexp.el:
make-regexp.el: timing functions removed due to name collisions with Gnus
2002-07-22 rsparapa <[email protected]>
* lisp/essa-sas.el:
ESS[SAS]: extended ess-sas-goto-shell to take an optional
argument if non-nil, then set-buffer rather than switch. This
new call replaces code chunks in ess-sas-submit-region,
ess-sas-data-view and ess-sas-graph-view. Furthermore, this
behavior is what was intended in nearly all
(ess-sas-goto-shell) calls and I have replaced them all with
(ess-sas-goto-shell t); except for the key-bindings for F8/F3
and the code that deals with kermit file transfers which require
the old behavior. Have only tested on XEmacs and 'sh, so YMMV.
* lisp/essa-sas.el:
ESS[SAS]: ess-sas-goto-shell resurrected! Our recent discussion
with respect to each SAS program, perhaps, needing it's own
ess-sas-submit-method brought me back to ancient discussions
of asynchronous shell buffer names. Emacs and XEmacs named them
differently. Our solution was to use & for 'sh and start for 'ms-dos
to make synchronous processes asynchronous. However, this made
ess-sas-goto-shell unnecessary since the buffer was always *shell*.
Now, I added the variable ess-sas-shell-buffer which is buffer-local
and defaults to *shell*. If you set this to something else, then you
will get another shell buffer. And, ess-sas-goto-shell will take you
to whichever one you need. So, we are back to the original function.
I also moved the add-hook call to the shell creation step since it
seemed like over-kill to call it every time you did ess-sas-submit-sh.
Is this enough explanation or am I boring you?
2002-07-19 rsparapa <[email protected]>
* lisp/essa-sas.el: ESS[SAS]: tweaks to
-> ess-sas-submit-mac for JSM presentation
* lisp/essa-sas.el:
ESS[SAS]: ess-sas-submit-method
needs to be buffer-local so that ess-sas-submit can submit different
buffers in different ways with the Local Variables trick
2002-07-16 rsparapa <[email protected]>
* lisp/ess-utils.el:
ess-utils.el: added ess-kermit- functions; now, it's really
ready for testing
* lisp/ess-cust.el:
ess-cust.el: added ess-kermit- variables
* lisp/essa-sas.el:
ESS[SAS]: moved ess-kermit- variables to ess-cust.el and
ess-kermit- functions to ess-utils.el
* lisp/ess-cust.el:
ess-cust.el: applied Stephen's patch; also changed more :types
from "string" to 'string; finally, fixed custom-ize for SAS; it
always worked if you specified 'ess-sas for the
group, but never worked if you specified 'ess; this was because
defgroup defined 'ess-SAS rather than 'ess-sas; and, now I understand
what :prefix does; we discussed this previously and nobody knew
(the documentation doesn't say either); :prefix is the beginning of
the variable name that the custom-ize buffer doesn't show you;
therefore, it seems that :prefix should be "ess-" for 'ess-sas;
I think this is what it always was, but now I know this is right;
only tested this on XEmacs 21.4.8 which is nearly bullet-proof;
please test on buggier versions of (x)emacs
2002-07-11 rsparapa <[email protected]>
* lisp/essa-sas.el:
ess-search-except, ess-sas-data-view, ess-sas-graph-view:
improvements to all; simplification of the latter -view's
with ess-search-except and other minor changes
* lisp/essa-sas.el:
ess-search-except: I forgot to include the bloody example of it's
use; now see ess-sas-data-view.
* lisp/essa-sas.el:
ess-search-except: I believe it does what we want now. Sorry, to make this
a multi-stage commit, but I can think in SAS, not elisp yet :o)
* lisp/essa-sas.el:
ess-search-except: I had some free time and I decided to
write a function to perform the complex searches
that are necessary for ess-sas-data-view. I suppose a function
like this would be valuable for ess-sas-graph-view and for
other packages as well. After a bit more testing, I'll put
it some place more appropriate. I suppose we don't
have a lot of time left before 5.2.0
* lisp/essa-sas.el:
ess-sas-data-view: the code will make your head hurt, but
the search for a permanent SAS data just got a little smarter.
After it finds a tentative candidate in a forward search,
it checks if it is a work./first./last. If so, then it
backward searches. I suppose a better approach would be
to write an ess-search function that takes arguments
for regexp, direction, and exceptions to ignore. I
don't have time right now, but let's add it to the TODO.
2002-07-02 rsparapa <[email protected]>
* doc/ess.texi:
updated copyright to 2002. Deep thought: does everything
need a person to copyright it? Wouldn't it be better to
have something like: Copyright (C) 2002 ESS Developers?
2002-06-24 rsparapa <[email protected]>
* lisp/essa-sas.el:
ess-sas-data-view: Now ignoring WORK datasets since there is no
way to open them anyway. It would be nice if this function (as well as
ess-sas-graph-view) could also be accessible via the mouse.
Any hints as to how to do it would be appreciated. Currently, you have
to move the point manually or re-type the dataset/graph that you want
to view. Just clicking on a dataset/graph would be easier.
2002-06-24 Martin Maechler <[email protected]>
* lisp/essdsp6w.el, lisp/essd-r.el, lisp/essd-s3.el, lisp/essd-s4.el, lisp/essd-sp3.el, lisp/essd-sp4.el, lisp/essd-sp5.el, lisp/essd-sp6.el:
activate imenu for S+modes, using the ess-[SR]-use-imenu variable (in R and S+)
2002-06-20 rsparapa <[email protected]>
* lisp/ess-emcs.el, lisp/ess-inf.el, lisp/ess-menu.el, lisp/ess-mode.el, lisp/ess-mous.el, lisp/ess-trns.el, lisp/noweb-mode.el:
all ess-running-xemacs have now been replaced with (featurep 'xemacs)
* VERSION: VERSION: 5.2.0
2002-06-19 rsparapa <[email protected]>
* lisp/ess-emcs.el:
ess-emcs.el: (featurep 'xemacs) has been implemented
according to Rich's suggestion; however, ess-running-xemacs
is rather pervasive among numerous other ESS lisp files;
I don't have time to go into every file and change them all;
but, this will certainly be the recommended route to take with ESS 6
2002-06-19 rmh <[email protected]>
* lisp/essdsp6w.el, lisp/ess-emcs.el, lisp/essd-sp4.el, lisp/ess-site.el:
w32-short-file-name win32-short-file-name
2002-06-19 rsparapa <[email protected]>
* README, ANNOUNCE:
Updating README, ANNOUNCE for new version
2002-06-18 rsparapa <[email protected]>
* doc/ess.texi, doc/inst_tar.texi:
Unix Installation: massive changes; I really don't understand
points 7 and 8, but I assume the XEmacs parts of 8 will change
once 5.2.0 is an "official" XEmacs package; I suggest similar
changes be made to Microsoft Windows Installation, but I made
none. Enjoy!
2002-06-18 Martin Maechler <[email protected]>
* lisp/essd-r.el:
allow prompt "Browse[1]> "
-- i.e. add "[]" to valid prompt chars (but not as first one!)
2002-06-18 rsparapa <[email protected]>
* lisp/essa-sas.el:
ess-kermit-get: last bug-fix
; it's about as user-friendly as I can imagine at the moment
2002-06-17 rsparapa <[email protected]>
* doc/help-sas.texi, doc/inst_tar.texi, doc/newfeat.texi, doc/requires.texi:
doc: minor improvements
* doc/currfeat.texi, doc/newfeat.texi:
doc: a few minor changes in preparation for the 5.2.0 release
* lisp/essa-sas.el:
ESS[SAS]: fixed a newly introduced bug in ess-kermit-get;
synchronized ess-kermit-send with ess-kermit-get; replaced
equal with string-equal (do we need to do this globally?);
I'd like to do a little bit more testing before 5.2.0; I'll
try to get it done tonight
* lisp/essa-sas.el:
ESS[SAS]: changes for more user friendly kermit file transfers;
ess-kermit-prefix default is now # which should be os-independent;
former defaults, : or ], could be problematic and were
based on ange-ftp/efs/tramp (an unnecessary restriction it turns out);
when ess-sas-goto is passed the suffix "log" or "lst" ess-kermit-get
is called if the file starts with ess-kermit-prefix; other extensions
could be dangerous since you might have altered the local copy whereas
.log and .lst files are only being modified by the SAS batch job; as
long as the integrity of the .sas program is maintained .log and .lst
can always be retrieved if an unwanted transfer overwrites them
2002-06-04 rsparapa <[email protected]>
* lisp/ess-utils.el:
ess-utils: explanatory comment on the recent change in ess-revert-wisely
2002-05-28 rmh <[email protected]>
* doc/ess.texi, doc/help-sas.texi, info/ess.info-1, info/ess.info, info/ess.info-2, info/ess.info-3, info/ess.info-4:
M-x SAS does not work with MS Windows
2002-05-28 rsparapa <[email protected]>
* Makefile:
Makefile: made compile the default; also fixed problem with make all
2002-05-27 Martin Maechler <[email protected]>
* doc/README.SPLUS4WIN:
5.1.21, not *.20 (is this not yet integrated in *.texi ?)
2002-05-21 rmh <[email protected]>
* doc/dir, info/dir:
dir file needed in same directory as *.info* files