Merge pull request #4 from asnowfix/master

avoid breaking on emacs-24.2
This commit is contained in:
Carlo Sciolla 2015-07-13 22:41:43 +02:00
commit a66997c3d1
1 changed files with 3 additions and 2 deletions

View File

@ -71,7 +71,7 @@
(shell-quote-argument plantuml-jar-path) (shell-quote-argument plantuml-jar-path)
" -language") (current-buffer)) " -language") (current-buffer))
(goto-char (point-min)) (goto-char (point-min))
(let ((found (search-forward ";" nil nil)) (let ((found (search-forward ";" nil t))
(word "") (word "")
(count 0) (count 0)
(pos 0)) (pos 0))
@ -189,4 +189,5 @@ Shortcuts Command Name
(run-mode-hooks 'plantuml-mode-hook)) (run-mode-hooks 'plantuml-mode-hook))
(provide 'plantuml-mode) (provide 'plantuml-mode)
;;; plantuml-mode.el ends here ;;; plantuml-mode.el ends here