diff options
author | smihica <smihica@gmail.com> | 2014-07-14 10:17:34 +0900 |
---|---|---|
committer | smihica <smihica@gmail.com> | 2014-07-14 10:25:17 +0900 |
commit | 0a109dfc87086680dc7eae9b99b4795a3ae4323e (patch) | |
tree | da62ecb6f510afd61f924cf1e4f2dc8d506b154c /emmet-mode.el | |
parent | 505c1896b34042d96b9f90114f44f507b063b8d3 (diff) | |
download | emmet-mode-0a109dfc87086680dc7eae9b99b4795a3ae4323e.tar.lz emmet-mode-0a109dfc87086680dc7eae9b99b4795a3ae4323e.tar.xz emmet-mode-0a109dfc87086680dc7eae9b99b4795a3ae4323e.zip |
Added new copyrighter. And updated the version.
Diffstat (limited to 'emmet-mode.el')
-rw-r--r-- | emmet-mode.el | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/emmet-mode.el b/emmet-mode.el index 90a0425..1452731 100644 --- a/emmet-mode.el +++ b/emmet-mode.el @@ -1,12 +1,13 @@ ;;; emmet-mode.el --- Unofficial Emmet's support for emacs -;; Copyright (C) 2013- Shin Aoyama +;; Copyright (C) 2014- William David Mayo (@pbocks https://github.com/pobocks) +;; Copyright (C) 2013- Shin Aoyama (@smihica https://github.com/smihica) ;; Copyright (C) 2009-2012 Chris Done -;; Version: 1.0.8 +;; Version: 1.0.9 ;; Author: Shin Aoyama <smihica@gmail.com> ;; URL: https://github.com/smihica/emmet-mode -;; Last-Updated: 2014-02-19 Wed +;; Last-Updated: 2014-07-14 Mon ;; Keywords: convenience ;; This file is free software; you can redistribute it and/or modify @@ -3466,14 +3467,6 @@ tbl)) "Customization group for emmet-mode." :group 'convenience) -(defun emmet-check-for-markup (bound) - (save-excursion - (save-match-data - (goto-char (line-beginning-position)) - (if (re-search-forward "\\(\\([ \t]+\\)?<[^>]*?>\\)+" bound t) - t - nil)))) - (defun emmet-expr-on-line () "Extract a emmet expression and the corresponding bounds for the current line." |