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 | |
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.
-rw-r--r-- | LICENSE | 5 | ||||
-rw-r--r-- | emmet-mode.el | 15 | ||||
-rw-r--r-- | src/comments.el | 7 |
3 files changed, 11 insertions, 16 deletions
@@ -1,12 +1,13 @@ - /emmet-mode.el - 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.X.X Author: Shin Aoyama <smihica@gmail.com> URL: https://github.com/smihica/emmet - Last-Updated: 2013-06-23 Sun + Last-Updated: 2014-07-14 Mon Keywords: convenience This file is free software; you can redistribute it and/or modify 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." diff --git a/src/comments.el b/src/comments.el index bee21a5..f91f99a 100644 --- a/src/comments.el +++ b/src/comments.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 |