Make emacs-bookmark.zsh work on older versions of zsh

This commit is contained in:
2025-02-17 01:10:03 -08:00
parent 7c85a1d3ee
commit b5c3ea0edb
2 changed files with 4 additions and 4 deletions

View File

@ -272,9 +272,9 @@ fi
# Bookmarks
if cmd_exists emacs; then
[[ -v BM_CWD_LS ]] || BM_CWD_LS=1
[[ -v BM_CWD_LS ]] || BM_CWD_LS=true
[[ -v BM_MODE ]] || BM_MODE=daemon
[[ -v BM_AUTO_RELOAD ]] || BM_AUTO_RELOAD=1
[[ -v BM_AUTO_RELOAD ]] || BM_AUTO_RELOAD=true
source "${ZSH_CONFIG_DIR}/emacs-bookmark.zsh"
fi