sbbs.el

Check-in [aabf564004]
Login
Overview
Comment:Ensure valid board names are entered
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | master | trunk
Files: files | file ages | folders
SHA3-256: aabf564004f32609add4dbb604078fb65c9c8dcda44a5eb58b736878110c5eaf
User & Date: zge on 2021-01-19 10:39:03
Other Links: branch diff | manifest | tags
Context
2021-01-19
15:39
Add sbbs-goto-end for jumping to the end of a thread check-in: 99f8459c8b user: zge tags: master, trunk
10:39
Ensure valid board names are entered check-in: aabf564004 user: zge tags: master, trunk
2020-12-16
12:13
Don't break compatibility with emacs -nw check-in: 3b3f5a4071 user: zge tags: master, trunk
Changes
Hide Diffs Side-by-Side Diffs Ignore Whitespace Patch

Modified sbbs.el from [7857cd54ea] to [d9b39dbe32].

   161    161               boards))
   162    162       (let ((choice (completing-read
   163    163                      (if def
   164    164                          (format "Board (default %s/%s): "
   165    165                                  (sbbs--board-domain def)
   166    166                                  (sbbs--board-name def))
   167    167                        "Board: ")
   168         -                   boards nil nil "/" nil def)))
          168  +                   boards nil t "/" nil def)))
   169    169         (if (stringp choice)
   170    170             (cdr (assoc choice boards))
   171    171           choice))))
   172    172   
   173    173    ;; UTILITY FUNCTIONS
   174    174   
   175    175   (defun sbbs--reload-thread (&optional _ignore-auto _noconfirm)