yasnippet.el: Bug fix release 0.14.1

This commit is contained in:
Stefan Monnier 2024-01-23 21:58:24 -05:00
parent b8f3f11ee5
commit 297546f085
2 changed files with 8 additions and 3 deletions

6
NEWS
View File

@ -1,8 +1,12 @@
Yasnippet NEWS -- history of user-visible changes.
Copyright (C) 2017-2019 Free Software Foundation, Inc.
Copyright (C) 2017-2024 Free Software Foundation, Inc.
See the end of the file for license conditions.
Changes since 0.14.0:
- Bug fixes and code cleanups.
* 0.14.0 (Dec 22, 2019)
** Changes

View File

@ -5,7 +5,7 @@
;; João Távora <joaotavora@gmail.com>,
;; Noam Postavsky <npostavs@gmail.com>
;; Maintainer: Noam Postavsky <npostavs@gmail.com>
;; Version: 0.14.0
;; Version: 0.14.1
;; X-URL: http://github.com/joaotavora/yasnippet
;; Keywords: convenience, emulation
;; URL: http://github.com/joaotavora/yasnippet
@ -1632,7 +1632,8 @@ Here's a list of currently recognized directives:
(setq expand-env (yas--read-lisp val 'nil-on-error)))
("binding" (setq binding val))
("contributor" nil) ;Documented in `snippet-development.org'.
(dir (message "Ignoring unknown directive: %s" dir))))))
(dir (message "Ignoring unknown directive %S in file: %s"
dir file))))))
(setq template
(buffer-substring-no-properties (point-min) (point-max))))
(unless (or key binding)