sbbs.el

Check-in [3b3f5a4071]
Login
Overview
Comment:Don't break compatibility with emacs -nw
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | master | trunk
Files: files | file ages | folders
SHA3-256: 3b3f5a40716830760a909319182c7a808d1f96cf3a1ec21fa7f321c15c67f9bd
User & Date: zge on 2020-12-16 12:13:51
Other Links: branch diff | manifest | tags
Context
2021-01-19
10:39
Ensure valid board names are entered check-in: aabf564004 user: zge tags: master, trunk
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
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Modified sbbs.el from [53a852f77e] to [7857cd54ea].

70
71
72
73
74
75
76
77
78
79
80
81
82
83
84

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

(defface sbbs--variable-pitch
  (if (x-list-fonts "Mona-")
      '((nil :font "Mona"
             :inherit variable-pitch))
    '((nil :inherit variable-pitch)))
  "Face for code blocks in threads.")

(defface sbbs--post-header-face
  '((nil :extend t







|







70
71
72
73
74
75
76
77
78
79
80
81
82
83
84

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

(defface sbbs--variable-pitch
  (if (and (window-system) (x-list-fonts "Mona-"))
      '((nil :font "Mona"
             :inherit variable-pitch))
    '((nil :inherit variable-pitch)))
  "Face for code blocks in threads.")

(defface sbbs--post-header-face
  '((nil :extend t