Skip to content

Commit 80975a3

Browse files
author
dickmao
committed
Merge branch 'master' of github.com:jrblevin/markdown-mode
2 parents 6cad215 + f3c54e3 commit 80975a3

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
language: generic
22
sudo: false
3+
dist: trusty
34
before_install:
45
- curl -fsSkL https://gist.github.com/rejeep/ebcd57c3af83b049833b/raw > x.sh && source ./x.sh
56
- evm install $EVM_EMACS --use --skip
@@ -10,6 +11,8 @@ env:
1011
- EVM_EMACS=emacs-25.2-travis
1112
- EVM_EMACS=emacs-25.3-travis
1213
- EVM_EMACS=emacs-26.1-travis
14+
- EVM_EMACS=emacs-26.2-travis
15+
- EVM_EMACS=emacs-git-snapshot-travis
1316
script:
1417
- emacs --version
1518
- cd tests && make clean && make test

markdown-mode.el

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2115,6 +2115,14 @@ Depending on your font, some reasonable choices are:
21152115
,@(when markdown-hide-markup
21162116
`(display ,markdown-footnote-display))))
21172117

2118+
(define-obsolete-variable-alias
2119+
'gfm-font-lock-keywords
2120+
'markdown-mode-font-lock-keywords "v2.4")
2121+
2122+
(define-obsolete-variable-alias
2123+
'markdown-mode-font-lock-keywords-basic
2124+
'markdown-mode-font-lock-keywords "v2.4")
2125+
21182126
(defvar markdown-mode-font-lock-keywords
21192127
`((markdown-match-yaml-metadata-begin . ((1 'markdown-markup-face)))
21202128
(markdown-match-yaml-metadata-end . ((1 'markdown-markup-face)))
@@ -2220,10 +2228,6 @@ Depending on your font, some reasonable choices are:
22202228
(markdown-match-wiki-link . ((0 'markdown-link-face prepend))))
22212229
"Syntax highlighting for Markdown files.")
22222230

2223-
(define-obsolete-variable-alias
2224-
'markdown-mode-font-lock-keywords-basic
2225-
'markdown-mode-font-lock-keywords "v2.4")
2226-
22272231
;; Footnotes
22282232
(defvar markdown-footnote-counter 0
22292233
"Counter for footnote numbers.")
@@ -9620,10 +9624,6 @@ rows and columns and the column alignment."
96209624
(setq-local markdown-table-at-point-p-function 'gfm--table-at-point-p)
96219625
(markdown-gfm-parse-buffer-for-languages))
96229626

9623-
(define-obsolete-variable-alias
9624-
'gfm-font-lock-keywords
9625-
'markdown-mode-font-lock-keywords "v2.4")
9626-
96279627

96289628
;;; Viewing modes =============================================================
96299629

0 commit comments

Comments
 (0)