Overview
Comment: | Merged fork |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.81 | v1.8104 |
Files: | files | file ages | folders |
SHA1: |
519f30f58ab87e1c4de85ea809d99f47 |
User & Date: | mrwellan on 2024-09-19 11:46:51 |
Other Links: | branch diff | manifest | tags |
Context
2024-09-20
| ||
02:51 | Updated training and official web site Leaf check-in: 49fc46636e user: matt tags: v1.81 | |
2024-09-19
| ||
11:46 | Merged fork check-in: 519f30f58a user: mrwellan tags: v1.81, v1.8104 | |
2024-09-17
| ||
12:41 | Bumping version to v1.8104 check-in: bc8fe667a2 user: matt tags: v1.81 | |
2024-08-26
| ||
20:12 | CI/CD: Automated commit after successful test, build, and deploy for blacklist_PROMPT_COMMAND check-in: 61daf744b8 user: fdiskadm tags: v1.81 | |
Changes
Modified common.scm from [c6c75a6980] to [5c226366fd].
︙ | ︙ | |||
2434 2435 2436 2437 2438 2439 2440 | (sort (hash-table-keys directories) (lambda (a b)(> (string-length a)(string-length b)))))) )) ;;====================================================================== ;; E N V I R O N M E N T V A R S ;;====================================================================== | | | 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 | (sort (hash-table-keys directories) (lambda (a b)(> (string-length a)(string-length b)))))) )) ;;====================================================================== ;; E N V I R O N M E N T V A R S ;;====================================================================== (define (save-environment-as-files fname #!key (ignorevars (list "USER" "HOME" "DISPLAY" "LS_COLORS" "XKEYSYMDB" "EDITOR" "MAKEFLAGS" "MAKEF" "MAKEOVERRIDES" "HOSTNAME" "PROMPT_COMMAND"))) ;;(bb-check-path msg: "save-environment-as-files entry") (let ((envvars (get-environment-variables)) (whitesp (regexp "[^a-zA-Z0-9_\\-:,\\.\\/%$]")) (mungeval (lambda (val) (cond ((eq? val #t) "") ;; convert #t to empty string ((eq? val #f) #f) ;; convert #f to itself (still thinking about this one |
︙ | ︙ |