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 Unified Diffs Ignore Whitespace Patch

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

59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74

(defface sbbs--uncover-spoiler-face
  '((((background light)) :background "black" :foreground "white")
    (((background dark)) :background "white" :foreground "black"))
  "Face for spoiler text in threads.")

(defface sbbs--code-face
  '((((background light)) :background "gray89")
    (((background dark)) :background "gray11"))
  "Face for code blocks in threads.")

  ;; VARIABLES

(defvar-local sbbs--board nil
  "Buffer local reference to current board.








|
|







59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74

(defface sbbs--uncover-spoiler-face
  '((((background light)) :background "black" :foreground "white")
    (((background dark)) :background "white" :foreground "black"))
  "Face for spoiler text in threads.")

(defface sbbs--code-face
  '((((background light)) :background "gray89" :extend t)
    (((background dark)) :background "gray11" :extend t))
  "Face for code blocks in threads.")

  ;; VARIABLES

(defvar-local sbbs--board nil
  "Buffer local reference to current board.