소스 검색

emacs.el: Avoid error when no markdown program is found

pull/15/head
10sr 8 년 전
부모
커밋
323057dcd4
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      emacs.el

+ 2
- 1
emacs.el 파일 보기

@@ -966,7 +966,8 @@ IF OK-IF-ALREADY-EXISTS is true force download."
(define-key gfm-mode-map (kbd "C-m") 'electric-indent-just-newline))
(add-to-list 'auto-mode-alist (cons "\\.md\\'" 'gfm-mode))
(set-variable 'markdown-command (or (executable-find "markdown")
(executable-find "markdown.pl")))
(executable-find "markdown.pl")
""))
(add-hook 'markdown-mode-hook
(lambda ()
(outline-minor-mode 1)


불러오는 중...
취소
저장