[go: up one dir, main page]

Activity for Bruno Haible

  • Bruno Haible Bruno Haible created ticket #1009

    stat st_mode wrong for file name = "NUL"

  • Bruno Haible Bruno Haible modified ticket #752

    Dead link on FAQ page.

  • Bruno Haible Bruno Haible posted a comment on ticket #752

    It has already been fixed in git: https://gitlab.com/gnu-clisp/clisp/-/commit/85cb1174de01ea1b7146dba09cc06eae72ebae94 The result has not been published yet, though (waiting for the next release).

  • Bruno Haible Bruno Haible modified ticket #749

    CL_MACH_VM configure check will fail with future compilers

  • Bruno Haible Bruno Haible posted a comment on ticket #749

    Thanks for the report. Fixed through commit 72ae177d.

  • Bruno Haible Bruno Haible modified ticket #59

    timestamps beyond 2036 do not work

  • Bruno Haible Bruno Haible posted a comment on ticket #59

    Thanks for the report! I would not have noticed this in time. Fixed through the commit https://gitlab.com/gnu-clisp/clisp/-/commit/d28822a69d0d6f785764a0f936afbfcb5897c957 .

  • Bruno Haible Bruno Haible modified ticket #748

    docs: formatting error in man page: missing newline before macro (with fix)

  • Bruno Haible Bruno Haible modified ticket #748

    docs: formatting error in man page: missing newline before macro (with fix)

  • Bruno Haible Bruno Haible posted a comment on ticket #748

    Thanks for the report. Fixed through https://gitlab.com/gnu-clisp/clisp/-/commit/f2bc9977107f39b0d3fb7478c75b67cecd19bcaf .

  • Bruno Haible Bruno Haible modified ticket #751

    princ prints extra newlines

  • Bruno Haible Bruno Haible posted a comment on ticket #751

    This is a consequence of *PRINT-PRETTY* and *PPRINT-FIRST-NEWLINE* being true. Documented at https://clisp.sourceforge.io/impnotes.html#ppr-first-newline . Not a bug.

  • Bruno Haible Bruno Haible created ticket #965

    lxsession does not update utmp

  • Bruno Haible Bruno Haible posted a comment on ticket #750

    I agree with at least the first part of your example: NCONC should validate that its arguments except the last one are lists. MAPCAN and MAPCON should check the intermediate results accordingly.

  • Bruno Haible Bruno Haible posted a comment on ticket #8

    Thank you for the details. Someone else had the same problem on 2019-12-12 and gave this comment: "WARNING: The default installation will wipe out your PATH variable. " I have therefore removed the .exe-format installers from the download directory. Windows users can still use the clisp-2.49-win32-mingw-small.zip and clisp-2.49-win32-mingw-big.zip files. I have also added a note about this bug in the development sources.

  • Bruno Haible Bruno Haible modified ticket #8

    Install of CLISP 2.49, deletes Windows 10 Path Statement.

  • Bruno Haible Bruno Haible posted a comment on ticket #8

    1) Where do you downloaded the CLISP installer from? 2) About your Windows installation: What version is it (32-bit or 64-bit Windows)? 3) Did you see the "deleted" PATH environment variable in the Control Panel? 4) Did you see the "deleted" PATH environment variable in a cmd.exe window? 5) Did you see the "deleted" PATH environment variable through a clisp command (getenv "PATH") ?

  • Bruno Haible Bruno Haible modified ticket #743

    Install of CIisp 2.49, deletes entire Windows 10, Path Statement

  • Bruno Haible Bruno Haible posted a comment on ticket #743

    This is a duplicate of https://sourceforge.net/p/clisp/support-requests/8/.

  • Bruno Haible Bruno Haible modified ticket #58

    Install of CLisp 2.49, deletes entire Windows Path Statement

  • Bruno Haible Bruno Haible posted a comment on ticket #58

    This is a duplicate of https://sourceforge.net/p/clisp/support-requests/8/.

  • Bruno Haible Bruno Haible posted a comment on ticket #57

    Until someone has reproduced, investigated, and fixed the two issues, your best bet is 1. to use the HEAD of either the master branch or the clisp-2.50 branch at https://gitlab.com/gnu-clisp/clisp , 2. use "make -f Makefile.devel build-porting64-gcc-portability". This is the least optimized variant. You can try out multiple variants through "build-porting64-gcc-portability multibuild-porting64-gcc".

  • Bruno Haible Bruno Haible posted a comment on ticket #739

    See also issue https://www.cliki.net/Issue%20LOOP-FINALLY-VARIABLES.

  • Bruno Haible Bruno Haible modified ticket #740

    make makemake work on macOS

  • Bruno Haible Bruno Haible posted a comment on ticket #740

    Thanks for the report. Fixed.

  • Bruno Haible Bruno Haible modified ticket #739

    CLISP fails ANSI-TEST LOOP.1.40

  • Bruno Haible Bruno Haible posted a comment on ticket #739

    There are two more related cases: > (loop for i from 1 to 5 finally (return i)) 6 > (loop for i from 1 upto 5 finally (return i)) 6 > (loop for i from 1 below 6 finally (return i)) 6 ANSI CL 6.1.2.1.1 http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/sec_6-1-2-1-1.html says: "The variable var is bound to the value of form1 in the first iteration and is stepped[1] by the value of form3 in each succeeding iteration, or by 1 if form3 is not provided." Therefore here, the variable I is...

  • Bruno Haible Bruno Haible modified ticket #737

    Macro Lambda-Lists Don't Permit early &environment Parameter

  • Bruno Haible Bruno Haible posted a comment on ticket #737

    When you read section 3.4.1 http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/sec_3-4-1.html it is clear how the brackets have to be interpreted, namely as an optional part at the given position. (Optional parts at ANY position are written in a different way, see http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/sec_1-4-1-2-1.html .) Per 3.4.7 http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/sec_3-4-7.html the &environment var section must come at...

  • Bruno Haible Bruno Haible committed [bfc8b5]

    Mark this repository as obsolete.

  • Bruno Haible Bruno Haible modified ticket #734

    test failures on mips in socket.tst

  • Bruno Haible Bruno Haible posted a comment on ticket #734

    Thank you. I have applied your patch.

  • Bruno Haible Bruno Haible posted a comment on ticket #734

    Thank you for the patch. I will apply it soon. > Maybe a more systematic solution should be designed. Absolutely. There are three options I can currently think of: Extend OS-ERROR so that it includes not only the numeric value of the code, but also a list of known names of this error code. Add a function that converts a numeric errno code to a list of symbolic ones. * Just add a function that maps a symbolic errno code to a numeric one.

  • Bruno Haible Bruno Haible committed [0e4d38]

    Fix possible build failure on some Linux/powerpc machines.

  • Bruno Haible Bruno Haible committed [c895ad]

    Fix possible build failure on some Linux/powerpc machines.

  • Bruno Haible Bruno Haible posted a comment on ticket #401

    For this change to work, you need to add the following files from gnulib: m4/iconv.m4 m4/lib-ld.m4 m4/lib-link.m4 m4/lib-prefix.m4 m4/host-cpu-c-abi.m4 m4/asm-underscore.m4 build-aux/config.rpath

  • Bruno Haible Bruno Haible committed [8e5bcb]

    Fix memory map related warnings on Alpine Linux 3.7/x86_64.

  • Bruno Haible Bruno Haible committed [e69592]

    Fix compilation error in C++ mode with musl libc.

  • Bruno Haible Bruno Haible committed [b55b81]

    Fix memory map related warnings on Alpine Linux 3.7/i386.

  • Bruno Haible Bruno Haible committed [31b5f2]

    Fix memory map related warnings on Alpine Linux 3.7/x86_64.

  • Bruno Haible Bruno Haible committed [fb654a]

    Fix compilation error in C++ mode with musl libc.

  • Bruno Haible Bruno Haible committed [513fb5]

    Fix memory map related warnings on Alpine Linux 3.7/i386.

  • Bruno Haible Bruno Haible committed [49e677]

    Fix compilation error in C++ mode (regression from 2018-02-11).

  • Bruno Haible Bruno Haible committed [97712d]

    Use newest libffcall.

  • Bruno Haible Bruno Haible committed [765e80]

    Fix build failure when building in the srcdir.

  • Bruno Haible Bruno Haible committed [ddd27a]

    Fix build failure on some Linux/mips machines.

  • Bruno Haible Bruno Haible committed [add251]

    Fix build failure on some Linux/i386 machines.

  • Bruno Haible Bruno Haible committed [858b53]

    Fix build failure on some Linux/arm machines.

  • Bruno Haible Bruno Haible committed [ef4080]

    Fix build failure on some Linux/powerpc machines.

  • Bruno Haible Bruno Haible committed [f5abd9]

    Fix possible build failure on some Linux/s390x machines.

  • Bruno Haible Bruno Haible committed [cb276d]

    Make KERNELVOID32_HEAPCODES work on Linux/arm, Linux/hppa, Linux/m68k.

  • Bruno Haible Bruno Haible committed [064437]

    Bump version number.

  • Bruno Haible Bruno Haible committed [ee068e]

    Fix possible build failure on some Linux/sparc64 machines.

  • Bruno Haible Bruno Haible committed [0cd5ae]

    Fix build failure on some Linux/x86_64 machines (Ubuntu 17.10, Debian).

  • Bruno Haible Bruno Haible committed [7364dd]

    Fix build failure on some Linux/arm64 machines.

  • Bruno Haible Bruno Haible committed [e7de51]

    Fix build failure on some Linux/mips64 machines.

  • Bruno Haible Bruno Haible committed [6dd7c7]

    Avoid "warning: command substitution: ignored null byte in input".

  • Bruno Haible Bruno Haible committed [c9fae1]

    Comments.

  • Bruno Haible Bruno Haible committed [742d09]

    Fix a build failure on some Linux/arm machines.

  • Bruno Haible Bruno Haible committed [3cdd33]

    Improve installation documentation.

  • Bruno Haible Bruno Haible committed [5c92eb]

    Added tag clisp_2_49_92-2018-02-18 for changeset 614b99fdba0c

  • Bruno Haible Bruno Haible committed [e28d19]

    Fix possible build failure on some Linux/powerpc64 machines.

  • Bruno Haible Bruno Haible committed [5b42d5]

    Bump version number after beta release.

  • Bruno Haible Bruno Haible committed [6baa39]

    Fix compilation error in C++ mode (regression from 2018-02-11).

  • Bruno Haible Bruno Haible committed [58d7ba]

    Fix possible build failure on some Linux/s390x machines.

  • Bruno Haible Bruno Haible committed [3e734d]

    Fix build failure when building in the srcdir.

  • Bruno Haible Bruno Haible committed [2687e7]

    Fix possible build failure on some Linux/sparc64 machines.

  • Bruno Haible Bruno Haible committed [cef636]

    Use newest libffcall.

  • Bruno Haible Bruno Haible committed [c39c91]

    Fix possible build failure on some Linux/powerpc64 machines.

  • Bruno Haible Bruno Haible committed [128b86]

    Make KERNELVOID32_HEAPCODES work on Linux/arm, Linux/hppa, Linux/m68k.

  • Bruno Haible Bruno Haible committed [caced8]

    Fix build failure on some Linux/mips machines.

  • Bruno Haible Bruno Haible committed [735133]

    Avoid "warning: command substitution: ignored null byte in input".

  • Bruno Haible Bruno Haible committed [d30230]

    Fix build failure on some Linux/x86_64 machines (Ubuntu 17.10, Debian).

  • Bruno Haible Bruno Haible committed [b98f04]

    Comments.

  • Bruno Haible Bruno Haible committed [eff419]

    Fix build failure on some Linux/powerpc machines.

  • Bruno Haible Bruno Haible committed [a56165]

    Fix a build failure on some Linux/arm machines.

  • Bruno Haible Bruno Haible committed [10e035]

    Fix build failure on some Linux/arm machines.

  • Bruno Haible Bruno Haible committed [55c979]

    Fix build failure on some Linux/arm64 machines.

  • Bruno Haible Bruno Haible committed [0e28bd]

    Fix build failure on some Linux/i386 machines.

  • Bruno Haible Bruno Haible committed [69dbfa]

    Improve installation documentation.

  • Bruno Haible Bruno Haible committed [614b99]

    Prepare a beta release for the Linux distros and testers.

  • Bruno Haible Bruno Haible committed [2f5dcf]

    Fix build failure on some Linux/mips64 machines.

  • Bruno Haible Bruno Haible created ticket #729

    option -L russian crashes when no russian locale is present

  • Bruno Haible Bruno Haible posted a comment on ticket #728

    The attached patch will fix it. Thanks for the report!

  • Bruno Haible Bruno Haible modified ticket #728

    linux --with-debug: oint_addr_mask does not cover CODE_ADDRESS_RANGE

  • Bruno Haible Bruno Haible posted a comment on ticket #728

    Try a build with --enable-portability. This build should not run into this compilation error, and from the lisp.run executable of this build you can try the -mm option.

  • Bruno Haible Bruno Haible posted a comment on ticket #728

    Please provide the following additional info: grep RANGE config.status Output of ./lisp.run -mm, as described in unix/PLATFORMS.

  • Bruno Haible Bruno Haible committed [18ce01]

    Implement options -memfile-hash, -memfile-hash-of, -memfile-compatible.

  • Bruno Haible Bruno Haible committed [45fedb]

    Bump version number.

  • Bruno Haible Bruno Haible committed [9e1650]

    Implement options -memfile-hash, -memfile-hash-of, -memfile-compatible.

  • Bruno Haible Bruno Haible committed [aa2403]

    Prepare a beta release for Debian and testers.

  • Bruno Haible Bruno Haible committed [f618e4]

    Added tag clisp_2_49_90-2018-02-11 for changeset aa240394e736

  • Bruno Haible Bruno Haible committed [0b1e7c]

    Simplify code.

  • Bruno Haible Bruno Haible committed [597dda]

    Simplify code.

  • Bruno Haible Bruno Haible committed [6e99f5]

    Enable most optimizations on GNU/kFreeBSD/i386.

  • Bruno Haible Bruno Haible committed [7574ab]

    Add support for GNU/kFreeBSD on i386.

  • Bruno Haible Bruno Haible committed [5a1fb7]

    Add support for GNU/kFreeBSD on i386.

  • Bruno Haible Bruno Haible committed [1e9325]

    Enable most optimizations on GNU/kFreeBSD/i386.

  • Bruno Haible Bruno Haible committed [100efe]

    Fix configure output on IRIX.

  • Bruno Haible Bruno Haible committed [1b025a]

    Enable most optimizations on IRIX mips o32.

1 >