forked from SawfishWM/librep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1338 lines (944 loc) · 38.2 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
2013-01-17 Christopher Roy Bratusek <[email protected]>
* src/lispmach.h: fix compilation on ARM [Togan Muftouglu]
2013-01-12 Christopher Roy Bratusek <[email protected]>
* debian/changelog
* debian/control
* debian/librep16.symbols: misc updates to debian packaging scripts
2012-09-08 Christopher Roy Bratusek <[email protected]>
* lisp/rep/util/misc.jl: add program-exists-p [Mark Triggs]
* configure.in: bump version to 0.92.3
* man/news.texi: update
2012-09-04 Christopher Roy Bratusek <[email protected]>
* configure.in: fix stack-direction for s390 [Kim B. Heino]
2012-09-01 Christopher Roy Bratusek <[email protected]>
* configure.in: fix stack-direction for ppc [Kim B. Heino]
* install-sh: updated to 2011-01-19.21
* man/news.texi: update
2012-07-06 Christopher Roy Bratusek <[email protected]>
* lisp/rep/xml/reader.jl: more entities support: gt, umlauts, esszett
* COPYING
* lisp/rep.jl
* lisp/rep/data.jl
* lisp/rep/data/objects.jl
* lisp/rep/data/queues.jl
* lisp/rep/data/records.jl
* lisp/rep/data/ring.jl
* lisp/rep/data/sort.jl
* lisp/rep/data/string-util.jl
* lisp/rep/data/symbol-table.jl
* lisp/rep/data/trie.jl
* lisp/rep/ffi/util.jl
* lisp/rep/i18n/xgettext.jl
* lisp/rep/io/file-handlers.jl
* lisp/rep/io/file-handlers/remote.jl
* lisp/rep/io/file-handlers/remote/ftp.jl
* lisp/rep/io/file-handlers/remote/rcp.jl
* lisp/rep/io/file-handlers/remote/rep.jl
* lisp/rep/io/file-handlers/remote/utils.jl
* lisp/rep/io/file-handlers/tar.jl
* lisp/rep/io/file-handlers/tilde.jl
* lisp/rep/io/files.jl
* lisp/rep/io/streams.jl
* lisp/rep/lang/compat-doc.jl
* lisp/rep/lang/debugger.jl
* lisp/rep/lang/define.jl
* lisp/rep/lang/doc.jl
* lisp/rep/lang/error-helper.jl
* lisp/rep/lang/interpreter.jl
* lisp/rep/lang/math.jl
* lisp/rep/lang/profiler.jl
* lisp/rep/mail/addr.jl
* lisp/rep/module-system.jl
* lisp/rep/net/domain-name.jl
* lisp/rep/net/rpc.jl
* lisp/rep/regexp.jl
* lisp/rep/structures.jl
* lisp/rep/system.jl
* lisp/rep/system/environ.jl
* lisp/rep/system/pwd-prompt.jl
* lisp/rep/test/autoload.jl
* lisp/rep/test/data.jl
* lisp/rep/test/framework.jl
* lisp/rep/threads/condition-variable.jl
* lisp/rep/threads/message-port.jl
* lisp/rep/threads/mutex.jl
* lisp/rep/threads/proxy.jl
* lisp/rep/threads/utils.jl
* lisp/rep/user.jl
* lisp/rep/util/autoloader.jl
* lisp/rep/util/base64.jl
* lisp/rep/util/date.jl
* lisp/rep/util/gaol.jl
* lisp/rep/util/ispell.jl
* lisp/rep/util/memoize.jl
* lisp/rep/util/misc.jl
* lisp/rep/util/repl.jl
* lisp/rep/util/time.jl
* lisp/rep/vm/assembler.jl
* lisp/rep/vm/bytecode-defs.jl
* lisp/rep/vm/bytecodes.jl
* lisp/rep/vm/compiler.jl
* lisp/rep/vm/compiler/basic.jl
* lisp/rep/vm/compiler/bindings.jl
* lisp/rep/vm/compiler/inline.jl
* lis/lispmach.h
* src/rep.h
* src/rep_gh.h
* src/rep_lisp.h
* src/rep_subrs.h
* src/repint.h
* src/repint_subrs.h
* src/unix_defs.h: fix fsf address [Togan Muftuoglu]
2012-03-24 Christopher Roy Bratusek <[email protected]>
* src/streams.c: read_line no longer aborts at 400 characters [Timo Korvola]
2012-01-14 Christopher Roy Bratusek <[email protected]>
* configure.in: fixed build-failure with gcc >= 4.7.0 on x86_64 [Kim B. Heino]
2012-01-13 Christopher Roy Bratusek <[email protected]>
* librep.spec: sync with Fedora [Kim B. Heino]
2011-08-20 Christopher Roy Bratusek <[email protected]>
* src/Makefile.in
* lisp/Makefile.in: Fix build on OS-X 10.6 by not exporting librep.sym
via libtool [John Harper]
* src/librep.sym: added some missing symbols [John Harper]
* librep.pc.in: don't ignore datarootdir
* src/ffi.c: better version of ALIGN if undefined [John Harper]
* configure.in: check for ffi/ffi.h if ffi.h isn't found [John Harper]
2011-06-10 Christopher Roy Bratusek <[email protected]>
* lisp/rep/util/misc.jl: imported beautify-symbol-name and
remove-newlines and option-index from Sawfish.
Improved version of position by Eli Barzilay
2011-06-02 Christopher Roy Bratusek <[email protected]>
* lisp/rep/util/misc.jl: added file containing misc stuff imported
from Sawfish. currently `position' and `string->symbol'
2011-05-05 Christopher Roy Brautsek <[email protected]>
* **/Makefile.in: remove VPATH to appease makepp [Daniel Pfeiffer]
2011-04-14 Christopher Bratusek <[email protected]>
* configure.in
* Makefile.in: remove version from install-paths
* debian/librep16.install: updated
2011-04-13 Christopher Bratusek <[email protected]>
* Makedefs.in
* Makefile.in
* configure.in
* src/misc.c
* build-info
* librep.pc.in: removed architecture from install-paths
* Makefile.in: added debclean rule
improved distclean rule
improved gitclean rule
* debian/**: merged packaing scripts from Ian Zimmermann
* config.h.in: removed from GIT
* config.guess
* config.sub: added
2011-04-05 Christopher Bratusek <[email protected]>
* src/unix_dl.c
* src/lispcmds.c: load shared-objects rather than libtool-archvies
-- Kim B. Heino
2011-03-18 Christopher Bratusek <[email protected]>
* man/rep.texi: fixed a typo
2011-02-27 Christopher Bratusek <[email protected]>
* debian/watch
* debian/changelog.in
* debian/control.in
* debian/README.source: removed
* configure.in: don't substitude gitdate
don't generate debian/changelog
don't generate debian/control
* debian/rules: major update
* debian/rep-doc.docs
* debian/control
* debian/changelog: added
* debian/rep.links
* debian/librep-dbg.links
* debian/librep-dev.links: updated
* debian/patches/00list
* debian/patches/series: renamed file
* debian/source/format: changed to 3.0 (quilt)
2011-02-05 Teika Kazura <[email protected]>
* lisp/rep/system.jl
* man/lang.texi: Bugfix of "remove-hook-by-name"; exported the
function. This fixes the bug in commit
c7da736dbdf0cb8b70d0289ebdda03036ec71add. Also bugfix in
lang.texi is included.
* lisp/rep/lang/interpreter.jl
* man/lang.texi
* man/news.texi: Implements new function "function-name".
* lisp/rep/system.jl: Minor change in "remove-hook-by-name".
It now relies on "function-name".
* lisp/rep/system.jl
* man/lang.texi
* man/news.texi: Doc. New section "Module Limits"
Also some minor fixes.
* lisp/rep/system.jl:
* man/news.texi: Minor bugfix in "remove-hook".
It doesn't signal an error even if the hook is unbound.
2011-01-15 Christopher Bratusek <[email protected]>
* lisp/rep/system.jl: added remove-hook-by-name [Teika Kazura]
* librep.pc.in: fixed a possible build issue in rep-gtk or sawfish
(reported on fedora 14)
* man/lang.texi:
* man/news.texi: updated
2010-12-17 Christopher Bratusek <[email protected]>
* debian/control: depend on either libgmp10-dev or libgmp3-dev
suggest either libreadline6-dbg or libreadline5-dbg
-- (compat with Debian/Experimental)
2010-12-12 Teika Kazura <[email protected]>
* librep.doap
* librep.spec.in
* lisp/rep/system.jl
* man/lang.texi
* man/news.texi
* src/rep_lisp.h: Doc
New section on module alias.
That add-hook always add a new element, even if it's already
present. Other misc doc.
2010-09-25 Christopher Bratusek <[email protected]>
* lisp/Makefile.in
* lisp/rep/ffi/util.jl: added ffi utils. [Sergey Bolshakov]
* librep.spec.in: fixed. [Kim B. Heino]
2010-09-10 Christopher Bratusek <[email protected]>
* src/Makefile.in: fix uninstall rule
2010-09-07 Teika Kazura <[email protected]>
* lisp/rep/lang/doc.jl
* lisp/rep/vm/compiler/rep.jl
* src/rep_lisp.h
* src/structures.c
* src/symbols.c: Revereted the last edit on 29 Aug.
They were replayed as better commits. See below.
* src/rep_lisp.h
* src/structures.c
* src/symbols.c: Implements 'subr-structure'. Each subr now
remembers the module it belongs to, and the new function
'subr-structure' returns it. This change is ABI
incompatible. After this, you have to re-compile rep-gtk and
sawfish in this order.
It seems that struct rep_subr and rep_xsubr have to have the
(almost) same members, because the subr lisp object is cast to
both, depending on the need. So I added 'repv structure' to both,
though one of rep_subr is never referred to.
* lisp/rep/vm/compiler/rep.jl: Doc support for 'defun' in
user-compiled file.
Previously, docstring in defun is lost on byte-compilation done by
user, i.e., when it's not saved in DOC.
Fixes an error included in the reverted commit d83b5. It used to
print debugging messages.
* lisp/rep/lang/doc.jl: Function 'documentation' works for subr
and macro, too.
* TODO
* lisp/rep/lang/doc.jl
* lisp/rep/structures.jl
* man/lang.texi
* man/news.texi
* src/rep_lisp.h
* src/structures.c: Doc.
Improved news. Some addition in TODO. Others.
Doc of `structure-exports-p' is given.
Doc of `intern-structure' is corrected.
Doc on read syntax of character is improved.
* lisp/rep/lang/doc.jl
* man/lang.texi
* man/news.texi: Doc on recent improvements on docstring and subr.
Related news.
Describes 'documentation' function in info.
* man/lang.texi: Doc. Re-ordered sections in 'The language' chapter.
2010-08-29 Christopher Bratusek <[email protected]>
* lisp/rep/lang/doc.jl
* lisp/rep/vm/compiler/rep.jl
* src/rep_lisp.h
* src/structures.c
* src/symbols.c: improved documentation function, which returns
the docstring of a variable or function. The previous implementation
had several defuncts: - doesn't always work with a subr
- doesn't always work with a macro
- doesn't work for byte-compiled files
This change is binary-incompatible! So you need to re-build rep-gtk
and sawfish (sawfish-pager is not directly linked against librep)
in that order. More descriptive docs are following. [Teika Kazura]
2010-07-24 Christopher Bratusek <[email protected]>
* debian/source/format: set 3.0 (native) source format
2010-07-20 Christopher Bratusek <[email protected]>
* man/news.texi: grammar'n'stuff
* man/Makefile.in: build NEWS using --no-validate flag
2010-07-17 Teika Kazura <[email protected]>
* AUTHORS
* BUGS
* HACKING
* THANKS
* TREE: Deleted. See the next entry.
* MAINTAINERS
* README
* TODO
* lisp/rep.jl
* lisp/rep/lang/compat-doc.jl
* lisp/rep/user.jl
* man/interface.texi
* man/lang.texi
* man/librep.texi
* man/news.texi
* man/rep.1
* man/repl.texi: Major doc revision. Reorganized documentation
files. Deleted files are merged into info.
For the details, read 0.90.7 news and git log
4a3e91e2490..3f7a5aee3b1
* lisp/rep.jl
* lisp/rep/lang/interpreter.jl
* man/lang.texi
* man/news.texi: Introduced 'defvar-setq'.
2010-06-26 Teika Kazura <[email protected]>
* lisp/rep/lang/interpreter.jl
* lisp/rep/vm/bytecode-defs.jl
* lisp/rep/vm/compiler/rep.jl
* man/lang.texi
* man/news.texi
* src/bytecodes.h
* src/lisp.c: Backtrace and debugger option fix.
Previously, if 'backtrace-on-error' is t, then it is printed even if
it's inside of a 'condition-case'. Now, it doesn't. Similar for
'debug-on-error'.
However, this edit is not perfect, but does not bring in any new
inconvenience either. Read the news and the manual for the details.
* man/news.texi
* src/lisp.c: When you evaluate a closure, the module to which it
belongs is printed, too.
* librep.ebuild.in
* man/lang.texi
* man/news.texi
* src/repint.h
* src/structures.c: Doc.
Declared that ebuild is not an official one.
Internal 64-bit integer availability.
Improved 'let' and fluid description.
And so on.
2010-05-01 Teika Kazura <[email protected]>
* man/news.texi
* Src/unix_processes.c: Process execution failure emits a better
message. It now shows the program name and arguments.
* man/lang.texi: Minor doc improvements.
2010-04-03 Teika Kazura <[email protected]>
* man/lang.texi
* man/news.texi: Doc.
More details on 'require'. Distinguishes import to module and
loading to librep.
Backslash as in ?\] is meaningless, but valid.
Function 'signal'.
Distinction between 'make-symbol' and 'intern'.
Deleted one control code (C-x).
2010-02-02 Teika Kazura <[email protected]>
* lisp/rep/io/file-handlers/tar.jl
* man/lang.texi
* man/news.texi: Doc improvements. Describes 'string-split'. Correction in suffix handling of 'load'. Minor improvements in modules, cross references (let, define, defun), require and load.
2010-01-24 Christopher Bratusek <[email protected]>
* librep.spec.in: improved [Kim B. Heino]
2010-01-15 Christopher Bratusek <[email protected]>
* Makefile.in: remove librep.pc upon distclean, not gitlcean
2010-01-10 Christopher Bratusek <[email protected]>
* src/repint.h
* src/repint_subrs.h
* src/files.c
* src/unix_files.c: renamed file-uid-p to file-uid and file-gid-p to file-gid
* configure.in: version bump to 0.90.6
2010-01-07 Christopher Bratusek <[email protected]>
* src/memcmp.c
* configure.in: cleanup for yesterdays commit
2010-01-06 Christopher Bratusek <[email protected]>
* src/alloca.c
* config.h.in
* configure.in
* src/Makefile.in
* src/main.c
* src/unix_main.c: removed our own implementation of alloca, use libcs instead
-- [Kim B. Heino]
2010-01-05 Christopher Bratusek <[email protected]>
* man/lang.texi: doc for file-uid-p file-gid-p
2010-01-05 Teika Kazura <[email protected]>
* TODO
* intl/l10nflist.c
* lisp/rep/data.jl
* lisp/rep/data/trie.jl
* lisp/rep/io/file-handlers/remote/ftp.jl
* lisp/rep/io/file-handlers/remote/rcp.jl
* lisp/rep/io/file-handlers/remote/rep.jl
* lisp/rep/io/file-handlers/tar.jl
* lisp/rep/lang/doc.jl
* lisp/rep/lang/interpreter.jl
* lisp/rep/module-system.jl
* lisp/rep/threads/condition-variable.jl
* lisp/rep/threads/message-port.jl
* lisp/rep/util/date.jl
* lisp/rep/util/repl.jl
* lisp/rep/vm/compiler.jl
* lisp/rep/vm/compiler/basic.jl
* lisp/rep/vm/compiler/bindings.jl
* lisp/rep/vm/compiler/modules.jl
* lisp/rep/vm/compiler/rep.jl
* lisp/rep/vm/compiler/utils.jl
* lisp/rep/www/cgi-get.jl
* lisp/rep/www/quote-url.jl
* src/bytecodes.h
* src/continuations.c
* src/datums.c
* src/ffi.c
* src/files.c
* src/find.c
* src/fluids.c
* src/gettext.c
* src/lisp.c
* src/lispmach.c
* src/lispmach.h
* src/numbers.c
* src/readline.c
* src/record-profile.c
* src/rep-remote.c
* src/rep-xgettext.jl
* src/rep_gh.h
* src/rep_lisp.h
* src/rep_regexp.h
* src/repgdbm.c
* src/repint.h
* src/repsdbm.c
* src/safemach.c
* src/sockets.c
* src/structures.c
* src/symbols.c
* src/tables.c
* src/timers.c
* src/unix_files.c
* src/unix_main.c
* src/unix_processes.c
* src/values.c: Deleted ctrl-l
* man/interface.texi
* man/lang.texi: Minor doc improvements.
* lisp/rep/vm/compiler/rep.jl
* man/news.texi: Bugfix in byte compiler of lost docstring. See git log for the details.
2010-01-04 Christopher Bratusek <[email protected]>
* debian/librep9.symbols
* src/repint.h
* src/repint_subrs.h
* src/files.c
* src/unix_files.c
* src/librep.sym: added file-uid-p and file-gid-p
2010-01-03 Christopher Bratusek <[email protected]>
* debian/rules: don't remove config.{guess,sub} on rules/clean
* librep.spec.in: don't call autogen.sh
* debian/changelog.in: s/+0200/+0100/
* Makefile.in: + rename realclean target to gitclean
+ instead of removing generated packging-script files upon
`distclean', remove them on `gitclean'
+ call fakeroot debian/rules clean
* debian/control.in: removed debian-specific bits
* autogen.sh: call gitclean instead of distclean
2010-01-02 Christopher Bratusek <[email protected]>
* autogen.sh: added --nocfg flag for not running configure afterwards
* librep.spec.in: improved [Kim B. Heino]
* man/news.texi: updated
2010-01-01 Christopher Bratusek <[email protected]>
* debian/librep-dev.install
* librep.spec.in
* librep.pc.in
* src/Makefile.in: install headers to $includedir/rep/ instead of $includedir
* librep.pc.in: removed empty Requires: field
* man/news.texi: updated
2009-12-29 Christopher Bratusek <[email protected]>
* configure.in
* config.h.in
* src/dlmalloc.c: removed our own dlmalloc, as it breaks on several arches,
and is never in use since years [Kim B. Heino]
* man/news.texi: updated
* configure.in
* debian/control.in: generate debian/control from template
2009-12-07 Christopher Bratusek <[email protected]>
* man/Makefile.in: don't hardcode /usr in manpage installation path
2009-12-05 Christopher Bratusek <[email protected]>
* configure.in: bumped library version to 9.4.1
* configure.in
* librep.pc.in
* debian/rules
* librep.spec.in
* Makedefs.in: use $prefix/lib instead of $prefix/libexecdir to satisfy FHS
* man/news.texi: updated
2009-11-13 Christopher Bratusek <[email protected]>
* configure.in: post-release version-bump to 0.90.4
* src/numbers.c
* src/repint.h: fixups for OpenBSD [Jasper Lievisse Adriaanse]
2009-10-24 Christopher Bratusek <[email protected]>
* librep.spec.in
* man/Makefile.in
* man/rep.1
* man/repdoc.1
* man/rep-remote.1
* man/rep-xgettext.1: added man-pages from Debian
* debian/patches/00list
* debian/changelog.in
* debian/control
* debian/compat
* debian/copyright
* debian/librep9.install.standard
* debian/librep9.preinst
* debian/librep9.symbols
* debian/librep-dbg.links
* debian/librep-dev.install.standard
* debian/librep-dev.links
* debian/librep-dev.lintian-overrides
* debian/librep-dev.preinst
* debian/README.source
* debian/rep-doc.info
* debian/rep-doc.install
* debian/rep.install
* debian/rep.links
* debian/rules
* debian/watch: added debian packaging scripts based on official one
2009-10-10 Christopher Bratusek <[email protected]>
* src/files.c
* src/repint.h
* src/repint_subrs.h
* src/rep_subrs.h: added file-executable-p function
* man/news.texi
* man/lang.texi: updated
2009-09-24 Christopher Bratusek <[email protected]>
* librep.ebuild.in: improved [Fuchur] [Christopher Bratusek]
2009-09-13 Christopher Bratusek <[email protected]>
* librep.doap: added
2009-09-12 Christopher Bratusek <[email protected]>
* configure.in: bump version to 0.90.3
s/can't/cannot/
s/don't/do not/
to prevent syntax highlighting errors (eg: in geany/vim)
small improvements in a test [FreeBSD]
* src/Makefile.in
* src/rep-config.sh: removed rep-config script (use librep.pc instead)
2009-09-10 Christopher Bratusek <[email protected]>
* configure.in: fallback to old ffi check if there's no libffi.pc [Vincent Untz]
* man/news.texi: updated
2009-09-05 Christopher Bratusek <[email protected]>
* librep.spec.in: improved [Kim B. Heino]
2009-08-25 Christopher Bratusek <[email protected]>
* configure.in: post-release version bump to 0.90.2
* src/lisp.c: fixed an major defunct in prin1 + utf8 [Timo Korvola]
* src/streams.c: wrong description of formats %s and %S
2009-08-22 Christopher Bratusek <[email protected]>
* src/rep.c: properly terminate rep interpreter [Jürgen Hötzel]
* src/readline.c: save/load readline history in interactive mode [Jürgen Hötzel]
* src/lisp.c
* src/uft8.c: No C++ style comments in C code
2009-07-25 Christopher Bratusek <[email protected]>
* librep.pc.in: add -L$prefix to libs
2009-07-24 Christopher Bratusek <[email protected]>
* emulate-gnu-tar
* lisp/rep/io/file-handlers/tar.jl: added support for tar.xz and tar.lzma
* lisp/rep/io/file-handlers/tar.jl: improved regex for parsing tar output [Alexey I. Froloff]
* src/ffi.c: improved ffi-binding [Alexey I. Froloff]
* src/librep.sym: added some missing entries [Alexey I. Froloff]
2009-07-15 Christopher Bratusek <[email protected]>
* configure.in
* Makedefs.in
* src/Makefile.in: update checks for libffi
2009-07-11 Christopher Bratusek <[email protected]>
* src/unix_processes.c: fix a definition
2009-07-02 Christopher Bratusek <[email protected]>
* configure.in: obligatory post-release version bump
* .git: created 0.90.0 tag and pushed 0.17.4 tag
2009-06-30 Christopher Bratusek <[email protected]>
* man/lang.texi: updated for rep.util.utf8 [Teika Kazura]
* src/lispcmds.c: fixed a typo [Teika Kazura]
* src/utf8.c: improved copyright notice, removed unused macros [Teika Kazura]
2009-06-19 Christopher Bratusek <[email protected]>
* src/unix_processes
* src/sdbm.c
* src/sdbm_pair.c: removed 3 unused variables
2009-05-30 Christopher Bratusek <[email protected]>
* src/utf8.c: added UTF-8 Support! [Wang Diancheng]
2009-05-06 Christopher Bratusek <[email protected]>
* Makefile.in: remove tar target [Ritz]
* configure.in: 0.17.4 released, bump to 0.90.0
* lisp/scheme/
* lisp/scheme.jl
* lisp/unscheme/
* lisp/unscheme.jl
* lisp/rep/vm/compiler/scheme.jl
* lisp/rep/vm/compiler/unscheme.jl: removed
* lisp/rep/vm/compiler.jl
* lisp/rep/user.jl
* lisp/Makefile: updated
2009-05-05 Christopher Bratusek <[email protected]>
* man/lang.tex
* man/librep.texi
* man/news.texi: 'Numbers' section is revised, mainly on machine dependence. Minor improvements [Teika]
* configure.in: small configures ending message update (from rep-gtk/sawfish)
2009-03-24 Christopher Bratusek <[email protected]>
* Makedefs.in: first define datarootdir then stuff that refers to it
* man/news.texi: updated
2009-03-06 Christopher Bratusek <[email protected]>
* configure.in
* Makedefs.in
* intl/Makefile.in: don't ignore datarootdir setting
2009-03-05 Christopher Bratusek <[email protected]>
* configure.in: 0.17.3 released, bump to 0.17.4
2009-02-18 Christopher Bratusek <[email protected]>
* lisp/rep/io/file-handlers/tar.jl: BSD-Tar is not supported by librep, give users a useful warning message [Mark Diekhans]
2009-02-03 Christopher Bratusek <[email protected]>
* install-sh: added for libtool < 2.2
* librep.spec.in: don't try to package librep.a and %{_infodir}/dir
* autogen.sh: re-enable the use of autoheader
* configure.in: fix templates (for autoheader)
2009-02-02 Christopher Bratusek <[email protected]>
* librep.pc.in: remove bogus entries
* autogen.sh: don't use bash specific syntax [Mark Diekhans]
* configure.in: improved ending message
2009-02-01 Christopher Bratusek <[email protected]>
* MAINTAINERS: updated my mail address
* autogen.sh: work around an issue
* librep.spec.in: - don't try to package non-existent rep.m4
- make sure emacs_lispdir is defined
2009-01-18 Christopher Bratusek <[email protected]>
* librep.spec.in: - update BuildRequires
- merge changes from ritz's spec-file
2009-01-02 Christopher Bratusek <[email protected]>
* librep.spec.in: source-archive is .tar.bz2
2009-01-01 Christopher Bratusek <[email protected]>
* autogen.sh: reworked
* m4: add m4 directory to shut up libtool 1.x
* configure.in: begin rework
* install-sh: don't ship this file
2008-12-30 Christopher Bratusek <[email protected]>
* librep.ebuild.in: don't leak copyright info and update keywords
2008-12-24 Christopher Bratusek <[email protected]>
* autogen.sh: fix libtool command for libtool >2.2
2008-12-20 Christopher Bratusek <[email protected]>
* configure.in
* librep.ebuild.in: Added ebuild [Harald van Dijk]
* librep.pc.in: Complete Libs: Section
* Makefile.in: upon distclean also remove the ebuild and configure
2008-12-18 Christopher Bratusek <[email protected]>
* rep.m4
* librep.pc.in: drop rep.m4, instead improve the .pc file
* librep.spec.in
* Makefile.in: updated accordingly
* configure.in: add -L/lib${libsuff} to READLINE_LIBS [T2 Patch]
* src/main.c: mark check_configuration as not inlineable to fix build on ppc64 [Marcus Comstedt]
* man/news.texi: Updated NEWS
* src/fake-libexec: small fixup [SuSE]
* src/rep-config.sh: no rpath [Fedora]
2008-11-22 Christopher Bratusek <[email protected]>
* MAINTAINERS: added me
2008-10-23 Christopher Bratusek <[email protected]>
* configure.in: 0.17.2 snapshot released, bump to 0.17.3
2008-10-18 Christopher Bratusek <[email protected]>
* src/numbers.c: fix an issue with FreeBSD [patch from FreeBSD]
* src/numbers.c: improve a function [patch from FreeBSD]
* src/librep.sym: rep_file_fdopen has not been listed
* Makedefs.in
* src/Makefile.in
* intl/Makefile.in
* rules.mk.sh: added --tag=CC to libtool in serveral places
* Makedefs.in
* src/Makefile.in: don't ignore $LDFLAGS upon build
* src/sdbm.c: drop some useless code [NetBSD patch]
* man/news.texi: updated
2008-10-01 Christopher Bratusek <[email protected]>
* BUGS: updated
* HACKING: updated
* README: updated
* man/news.texi: updated
2008-09-02 Christopher Bratusek <[email protected]>
* configure.in: another fixup
2008-08-29 Christopher Bratusek <[email protected]>
* src/rep-subrs.h: replace the inclusion of config.h
with a ifdef doing what we want
* configure.in: fixup
* Makefile.in: create $(DESTDIR)/$(libdir)/pkgconfig
before installing the .pc file
2008-08-14 Christopher Bratusek <[email protected]>
* configure.in: AC_PROG_LIBTOOL not AM_PROG_LIBTOOL
* autogen.sh: change accordingly
* .cvsignore
* */.cvsignore: add svn:ignore property and remove all
.cvsignore files
* configure.in: 0.17.1 released, bump to 0.17.2
2008-08-11 Christopher Bratusek <[email protected]>
* src/dlmalloc.c: replace // comments with /* */
* src/rep_subrs.h: add #include "../config.h" for #define inline
2008-08-08 Christopher Bratusek <[email protected]>
* src/rep_subrs.h: another fixup. lets us compile
sawfish with paranoia cflags and seems not
to break anything.
* man/nes.texi: updated NEWS
* src/unix_main.c: fixup
2008-08-06 Christopher Bratusek <[email protected]>
* Makedefs.in: add --no-split to makeinfo (FreeBSD patch)
* configure.in: print useful things at the end
- add --enable-paranoia
(compile with paranoia CFLAGS)
2008-08-05 Christopher Bratusek <[email protected]>
* BUGS
* HACKING: updated information
* configure.in: bump version to 0.17.1
* librep.spec.in: update the spec file
* autogen.sh: add --force --copy to libtoolize flags
* src/*: started code-cleanup
* configure.in
* Makefile.in
* librep.pc.in: added a .pc file for librep
* src/unix_files.c: Trim trailing '/' to mkdir(2) since some
OSes fail the call otherwise (NetBSD patch)
* src/rep-xgettext.jl: use correct shebang (ALT-Linux patch)
* man/news.texi: add {define-special-variable} (Debian patch)
* rules.mk.sh: add --tag CC to libtool (Debian patch)
* src/main.c: replace a static void with a void (Debian patch)
2006-06-02 John Harper <[email protected]>
* rep.m4: fix for newer m4, from Michal Jaegermann
2006-01-31 John Harper <[email protected]>
* configure.in: fixed test for LC_MESSAGES to use new autoconf
macro (gt_LC_MESSAGES not AM_LC_MESSAGES)
2003-11-24 John Harper <[email protected]>
* configure.in: version 0.17, bumped library revision
* configure.in: $prefix can be set to "NONE" sometimes?
2003-09-03 John Harper <[email protected]>
* configure.in: fixes for compiling in a weird ${prefix}; Mac
OS X fixes; other fixes
* test, configure.in, Makefile.in, Makedefs.in: "DOC" file is
now called "doc-strings" to avoid clashing with "doc" build
directory in case folding filesystems
2003-07-26 John Harper <[email protected]>
* configure.in, config.h.in, Makedefs.in: updated for libffi
2003-02-25 John Harper <[email protected]>
* configure.in: version 0.16.2
2002-06-22 John Harper <[email protected]>
* configure.in: version 0.16.1
2002-06-20 John Harper <[email protected]>
* configure.in: version 0.16
2002-04-21 John Harper <[email protected]>
* configure.in: don't AC_SUBST(LIBOBJS), doesn't work on
autoconf 2.53, patch from Murray Cumming <[email protected]>
2002-04-13 John Harper <[email protected]>
* man/Makefile.in: use --info-dir when calling install-info
2002-02-20 John Harper <[email protected]>
* configure.in: don't ever compile our own dlmalloc, it breaks
on too many platforms
2001-12-02 John Harper <[email protected]>
* configure.in: don't use dlmalloc on sparcs
2001-11-17 John Harper <[email protected]>
* Makedefs.in: don't use `libtool --mode=execute' in
$(rep_prog), just call the script directly
2001-10-28 John Harper <[email protected]>
* configure.in: version 0.15.2
2001-10-03 John Harper <[email protected]>
* version 0.15.1
* build-info: don't try to find domainname, we don't need it
2001-10-01 John Harper <[email protected]>
* configure.in: version 0.15
* configure.in: check for __gmp_randinit () if gmp is found,
and define HAVE_GMP_RANDINIT if so
2001-09-15 John Harper <[email protected]>
* config.h.in: removed spurious close-comment from after
`#undef HAVE_MEMORY_H'
2001-09-14 John Harper <[email protected]>
* configure.in: bumped libcurrent and libage
2001-08-09 John Harper <[email protected]>
* rep-debugger.el: fixed for new debugger command line option
names
2001-08-07 John Harper <[email protected]>
* configure.in, Makedefs.in, Makefile.in, librep.spec.in:
install rep-debugger.el into the emacs site-lisp directory (in
our $prefix)