From 3afb7baa288eb8b1a7c194e1d2744e5d1e0f7b74 Mon Sep 17 00:00:00 2001 From: Zhang Chiyuan Date: Tue, 20 Jan 2009 14:34:10 +0000 Subject: [PATCH] Forget to check in 0.5.8 version --- doc/changelog.rst | 23 +++++++++++++++++++++++ yasnippet.el | 4 ++-- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index e273d48..e528448 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -6,6 +6,29 @@ ChangeLog :Contact: pluskid@gmail.com :Date: 2008-03-22 +0.5.8 / 2009-01-15 +================== + +* Added a ``key`` property in snippet definition for snippet names + that are not valid path name. +* Fixed some bugs of indenting (`Issue 44 + `_, `Issue + 46 `_). +* Fixed `Issue 45 + `_ by + providing a proper default value for ``yas/buffer-local-condition``. +* Added helper function ``yas/substr`` for convenient mirror + transformation. +* Make variable ``yas/registered-snippet`` properly initialized. +* Fixed the overlay error when overlay becomes empty (`Issue 49 + `_ and + `Issue 48 + `_). This + bug has occurred and been fixed earlier, and should not have + happened if we have proper regression test. +* Added a workaround for ``c-electric-`` serial commands (`Issue 27 + `_). + 0.5.7 / 2008-12-03 ================== diff --git a/yasnippet.el b/yasnippet.el index 00418fe..2be5333 100644 --- a/yasnippet.el +++ b/yasnippet.el @@ -3,7 +3,7 @@ ;; Copyright 2008 pluskid ;; ;; Author: pluskid -;; Version: 0.5.7 +;; Version: 0.5.8 ;; X-URL: http://code.google.com/p/yasnippet/ ;; This file is free software; you can redistribute it and/or modify @@ -202,7 +202,7 @@ to expand. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Internal variables ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -(defvar yas/version "0.5.7") +(defvar yas/version "0.5.8") (defvar yas/snippet-tables (make-hash-table) "A hash table of snippet tables corresponding to each major-mode.")