[Git][cmucl/cmucl][issue-363-add-version-number] 2 commits: Update cmucl.pot file

Raymond Toy pushed to branch issue-363-add-version-number at cmucl / cmucl Commits: 969372c2 by Raymond Toy at 2025-02-11T07:20:35-08:00 Update cmucl.pot file Docstring for -version switch has changed. - - - - - 5286ab0f by Raymond Toy at 2025-02-11T07:26:47-08:00 Update "target:" search list with correct src dir With the versioned paths, we need to update the "target:" search-list in default-site-init.lisp to have the correct path to the sources using the default tree structure. - - - - - 2 changed files: - src/code/default-site-init.lisp - src/i18n/locale/cmucl.pot Changes: ===================================== src/code/default-site-init.lisp ===================================== @@ -32,13 +32,22 @@ ;;; bin/ ;;; lib/ ;;; cmucl/ -;;; lib/ -;;; lisp*.coore -;;; man/ -;;; src/ +;;; <version>/ +;;; lib/ +;;; share/ +;;; cmucl/ +;;; <version>/ +;;; src/ +;;; tests/ +;;; man/ +;;; man1/ ;;; ;;; If your sources are located somewhere else, change this ;;; accordingly. -(setf (search-list "target:") - '("library:../src/")) +(push (pathname + (concatenate 'string + "library:../../../../share/cmucl/" + lisp::*lisp-implementation-version* + "/src/")) + (search-list "target:")) ===================================== src/i18n/locale/cmucl.pot ===================================== @@ -6209,7 +6209,7 @@ msgid "Same as -help." msgstr "" #: src/code/commandline.lisp -msgid "Prints the cmucl version and exits" +msgid "Prints the cmucl version and exits, without loading the lisp core." msgstr "" #: src/code/commandline.lisp View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/59bbf30e5d503113d44c847... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/59bbf30e5d503113d44c847... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)