sbbs.el

Check-in [e70b45d979]
Login
Overview
Comment:Disable recenter-to-top by default
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | master | trunk
Files: files | file ages | folders
SHA3-256: e70b45d979b7a0d323f2c05394cf597c1cfa3fa6b257198989a1866d289c1770
User & Date: zge on 2021-05-29 12:45:26
Other Links: branch diff | manifest | tags
Context
2021-05-29
12:45
Disable open-at-last-post by default check-in: 918ba0640d user: zge tags: master, trunk
12:45
Disable recenter-to-top by default check-in: e70b45d979 user: zge tags: master, trunk
12:45
Don't kill random buffer after parsing response check-in: ba466181bd user: zge tags: master, trunk
Changes
Hide Diffs Side-by-Side Diffs Ignore Whitespace Patch

Modified sbbs.el from [d697b54718] to [bf592c7f3b].

    51     51                    (cons (string :tag "Board Domain")
    52     52                          (string :tag "Board Name"))))
    53     53   
    54     54   (defcustom sbbs-jump-to-link t
    55     55     "Jump to first link after narrowing posts."
    56     56     :type 'boolean)
    57     57   
    58         -(defcustom sbbs-recenter-to-top t
           58  +(defcustom sbbs-recenter-to-top nil
    59     59     "Move point to top of frame when moving through posts."
    60     60     :type 'boolean)
    61     61   
    62     62   (defcustom sbbs-open-at-last-post t
    63     63     "Jump to last post in a thread when opening a thread."
    64     64     :type 'boolean)
    65     65