File: changes.txt

package info (click to toggle)
slsc 0.2.3-8
  • links: PTS
  • area: main
  • in suites: sarge, woody
  • size: 464 kB
  • ctags: 586
  • sloc: ansic: 6,544; yacc: 394; makefile: 112; lisp: 71; sed: 4
file content (49 lines) | stat: -rw-r--r-- 1,827 bytes parent folder | download | duplicates (4)
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
Changes since 0.2.2

   1.  Ported to SCO
   2.  Test and intallit targets added to the makefile
   3.  Option to save in table style added: TeX, LaTeX, Frame, and TBL
   4.  Bug fixed in loading and floating point overflow errors now caught.
   5.  If a region is defined, the TAB key may be used to insert the range
       string into the top edit buffer.
   
Changes since 0.2.0

   1.  MAX/MIN macros changes for clean compilation on ALPHA/AXP systems.
   
Changes since 0.1.2 

   1.  Added new REGION functions:
       
          @rsum, @ravg, @rprod, @rmax, @rmin, @rstddev

       These functions, prefixed with an `r, work almost exactly like their
       RANGE counterparts:

          @sum, @avg, @prod, @max, @min, @stddev

       except that there is a profound difference: CELLS THAT USE THESE
       FUNCTIONS ARE MUCH MORE LIKELY TO TRANSFORM PROPERLY UNDER INSERTION
       AND DELETION OF ROWS AND COLUMNS.  

       There is a simple relationship between the two sets of functions,
       e.g.,

           @sum (A10:F20) ==  @rsum (A10:G21)
	   @sum (B15:B27) ==  @rsum (B15:B28)
	   
       That is, the @rXXX functions are equivalent to the @XXX ones except
       that the cells that define the endpoints of the region are not
       used by the function.  
       
       This is consistent with the underlying text editor analogy of the
       interface: objects in a region are those from the mark UP TO BUT NOT
       INCLUDING the point.

Changes since 0.1 of SLSC

   1.  VMS style help now case insensitive and accepts abbreviations.
   2.  format statement now accepts the extra parameter of later sc versions.
   3.  Some items left out of the menus have been put in.
   4.  Better emacs emulation (Ctrl-SPACE sets mark, ESC-W copies region, ...)
   5.  Bug in menu that caused core dump fixed.