sbbs.el

Check-in [94c577ae4d]
Login
Overview
Comment:Extend code face over newlines
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | master | trunk
Files: files | file ages | folders
SHA3-256: 94c577ae4df05617038c87ac4d005d8b9201cd779a65dfc0a25180150445be58
User & Date: zge on 2020-05-31 15:58:29
Other Links: branch diff | manifest | tags
Context
2020-06-05
20:45
Fixed non-ASCII encoding issues check-in: 17bd3b2661 user: zge tags: master, trunk
2020-05-31
15:58
Extend code face over newlines check-in: 94c577ae4d user: zge tags: master, trunk
2020-05-29
10:51
Added hompepage header check-in: fb1123a588 user: zge tags: master, trunk
Changes
Hide Diffs Side-by-Side Diffs Ignore Whitespace Patch

Modified sbbs.el from [b2b8b724ce] to [40f6a50d8a].

    59     59   
    60     60   (defface sbbs--uncover-spoiler-face
    61     61     '((((background light)) :background "black" :foreground "white")
    62     62       (((background dark)) :background "white" :foreground "black"))
    63     63     "Face for spoiler text in threads.")
    64     64   
    65     65   (defface sbbs--code-face
    66         -  '((((background light)) :background "gray89")
    67         -    (((background dark)) :background "gray11"))
           66  +  '((((background light)) :background "gray89" :extend t)
           67  +    (((background dark)) :background "gray11" :extend t))
    68     68     "Face for code blocks in threads.")
    69     69   
    70     70    ;; VARIABLES
    71     71   
    72     72   (defvar-local sbbs--board nil
    73     73     "Buffer local reference to current board.
    74     74