diff options
| author | Quentin Aristote <quentin@aristote.fr> | 2021-11-20 13:49:52 +0100 |
|---|---|---|
| committer | Quentin Aristote <quentin@aristote.fr> | 2021-11-20 13:49:52 +0100 |
| commit | 0ed4cfd85520cf3e0472ca2726909e2cb2c2e474 (patch) | |
| tree | 9a2e0e257bc6e03799f805393ee0bc4eeb1112e0 | |
| parent | 3187d324bd2439eeb93d46d72b0f795b242cab4b (diff) | |
add initial value to interactive prompt of state for import-from-csv
| -rw-r--r-- | local/bibli-paris/bibli-paris.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/local/bibli-paris/bibli-paris.el b/local/bibli-paris/bibli-paris.el index d092365..d7a7e69 100644 --- a/local/bibli-paris/bibli-paris.el +++ b/local/bibli-paris/bibli-paris.el @@ -373,7 +373,8 @@ STATE (string)." nil bibli-paris/default-path-to-csv) (read-string "Tags : ") - (read-string "State (default : TODO) : "))) + (read-string "State : " + "TODO"))) (let* ((recnum-lines (make-hash-table :test 'equal :size (bibli-paris/number-of-entries) :weakness 'key-and-value)) |
