508
509
510
511
512
513
514
515
516
517
518
519
520
521
|
(if sbbs-open-at-last-post
(sbbs-goto-end)
(goto-char (point-min))))))))
;;; INTERACTIVE FUNCTIONS
(defun sbbs-show-all ()
"Show all hidden posts."
(interactive)
(sbbs-show-pop -1))
(defun sbbs-show-pop (&optional n)
"Show all hidden posts.
|
>
>
>
>
>
>
>
|
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
|
(if sbbs-open-at-last-post
(sbbs-goto-end)
(goto-char (point-min))))))))
;;; INTERACTIVE FUNCTIONS
(defun sbbs-open-externally ()
"Open the current thread using `browse-url'."
(interactive)
(unless sbbs--thread-id
(user-error "No thread to open"))
(browse-url (sbbs--board-url sbbs--thread-id)))
(defun sbbs-show-all ()
"Show all hidden posts."
(interactive)
(sbbs-show-pop -1))
(defun sbbs-show-pop (&optional n)
"Show all hidden posts.
|