sbbs.el

Check-in [43bf3542e7]
Login
Overview
Comment:Add a "/" as initial content when prompting to open a board
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | master | trunk
Files: files | file ages | folders
SHA3-256: 43bf3542e75391e5699bc7cff476916009b99044145755dd4831c5d33b54a38a
User & Date: zge on 2020-10-07 17:19:49
Other Links: branch diff | manifest | tags
Context
2020-12-16
12:13
Don't break compatibility with emacs -nw check-in: 3b3f5a4071 user: zge tags: master, trunk
2020-10-07
17:19
Add a "/" as initial content when prompting to open a board check-in: 43bf3542e7 user: zge tags: master, trunk
17:09
Add separate face for post headers check-in: aa9e221e24 user: zge tags: master, trunk
Changes
Hide Diffs Side-by-Side Diffs Ignore Whitespace Patch

Modified sbbs.el from [e87c43e082] to [53a852f77e].

   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 nil def)))
          168  +                   boards nil nil "/" 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)