From 91fc5e9c68c438f812df204d686244b612ca7d5f Mon Sep 17 00:00:00 2001 From: Jason Blevins Date: Wed, 4 Jun 2008 11:22:37 -0400 Subject: [PATCH] Remove nobreak-space face definition For Emacs 21 compatibility --- markdown-mode.el | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/markdown-mode.el b/markdown-mode.el index 1a8103d..4aab152 100644 --- a/markdown-mode.el +++ b/markdown-mode.el @@ -220,16 +220,6 @@ (require 'font-lock) -;; From Emacs 22.1 -(unless (boundp 'nobreak-space) - (defface nobreak-space - '((((class color) (min-colors 88)) :inherit escape-glyph :underline t) - (((class color) (min-colors 8)) :background "magenta") - (t :inverse-video t)) - "Face for displaying nobreak space." - :group 'basic-faces - :version 22.1)) - (defgroup markdown-faces nil "Faces used in Markdown Mode" :group 'markdown @@ -285,12 +275,6 @@ :group 'markdown-faces :type '(face)) -(defcustom markdown-line-break-face 'nobreak-space - "Line breaks" - :group 'markdown-faces - :type '(face)) - - (defconst markdown-regex-link-inline "\\(!?\\[[^]]*?\\]\\)\\(([^\\)]*)\\)" "Regular expression for a [text](file) or an image link ![text](file)") -- 2.11.4.GIT