diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-04-28 10:21:48 +0100 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-04-28 10:21:53 +0100 |
commit | 5e3d0b7d29d6fd5f4604e209577ad52b8592afb9 (patch) | |
tree | 3cdd8bd4ae176ce684cb667e0c308657fcd85c46 /sx-question-mode.el | |
parent | 6abffa8365fa0f8a211736037d469adeb657c1f2 (diff) |
Set nobreak-char-display to nil
Diffstat (limited to 'sx-question-mode.el')
-rw-r--r-- | sx-question-mode.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sx-question-mode.el b/sx-question-mode.el index d1732fb..9276381 100644 --- a/sx-question-mode.el +++ b/sx-question-mode.el @@ -243,6 +243,7 @@ on the current buffer use \\{sx-question-mode}" (setq header-line-format sx-question-mode--header-line) (setq mode-line-format sx-question-mode--mode-line) + (set (make-local-variable 'nobreak-char-display) nil) ;; Determine how to close this window. (unless (window-parameter nil 'quit-restore) (set-window-parameter @@ -252,7 +253,7 @@ on the current buffer use (font-lock-mode -1) (remove-hook 'after-change-functions 'markdown-check-change-for-wiki-link t) (remove-hook 'window-configuration-change-hook - 'markdown-fontify-buffer-wiki-links t)) + 'markdown-fontify-buffer-wiki-links t)) ;; We need this quote+eval combo because `kbd' was a macro in 24.2. (mapc (lambda (x) (eval `(define-key sx-question-mode-map |