mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-27 10:54:40 +00:00
(ebnf-insert-style, ebnf-merge-style): Fix typos in error messages.
This commit is contained in:
parent
040ee34f61
commit
0e816a433c
@ -1,10 +1,24 @@
|
||||
2007-04-13 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* cus-edit.el (minibuffer, auto-save): Fix typos in docstrings.
|
||||
|
||||
* term.el (term-buffer-maximum-size, term-exec, term-escape-char)
|
||||
(term-set-escape-char, term-termcap-format, term-get-old-input-default)
|
||||
(term-skip-prompt, term-send-string, term-send-region, term-pager-page)
|
||||
(term-pager-help): Fix typos in docstrings.
|
||||
|
||||
* wid-edit.el (widget-documentation): Fix typo in docstring.
|
||||
|
||||
* progmodes/ebnf2ps.el (ebnf-insert-style, ebnf-merge-style):
|
||||
Fix typos in error messages.
|
||||
|
||||
2007-04-13 Martin Rudalics <rudalics@gmx.at>
|
||||
|
||||
* emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't select
|
||||
window marked as dedicated.
|
||||
|
||||
* mail/footnote.el (footnote-latin-string): New variable.
|
||||
(footnote-latin-regexp): Redefined as regexp alternative.
|
||||
(footnote-latin-regexp): Redefined as regexp alternative.
|
||||
(Footnote-latin): Use footnote-latin-string instead of
|
||||
footnote-latin-regexp.
|
||||
|
||||
@ -30,12 +44,12 @@
|
||||
2007-04-11 Jason Rumney <jasonr@gnu.org>
|
||||
|
||||
* dnd.el (dnd-get-local-file-name): Decode both upper and lower
|
||||
case hex. Do not try to decode non-hex letters.
|
||||
case hex. Do not try to decode non-hex letters.
|
||||
|
||||
2007-04-11 Markus Triska <markus.triska@gmx.at>
|
||||
|
||||
* emacs-lisp/byte-opt.el (byte-optimize-backward-char)
|
||||
(byte-optimize-backward-word): Remove (move to bytecomp.el)
|
||||
(byte-optimize-backward-word): Remove (move to bytecomp.el).
|
||||
(byte-optimize-form-code-walker): Evaluate pure function calls if
|
||||
possible.
|
||||
(byte-optimize-all-constp): New function.
|
||||
@ -60,7 +74,7 @@
|
||||
|
||||
2007-04-10 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* woman.el (woman-decode-buffer): Postphone macro-set check...
|
||||
* woman.el (woman-decode-buffer): Postpone macro-set check...
|
||||
(woman-decode-region): ...to here.
|
||||
|
||||
2007-04-10 Thien-Thi Nguyen <ttn@gnu.org>
|
||||
|
@ -2609,7 +2609,7 @@ See `ebnf-style-database' documentation."
|
||||
(and (assoc name ebnf-style-database)
|
||||
(error "Style name already exists: %s" name))
|
||||
(or (assoc inherits ebnf-style-database)
|
||||
(error "Style inheritance name does'nt exist: %s" inherits))
|
||||
(error "Style inheritance name doesn't exist: %s" inherits))
|
||||
(setq ebnf-style-database
|
||||
(cons (cons name (cons inherits (ebnf-check-style-values values)))
|
||||
ebnf-style-database)))
|
||||
@ -2639,7 +2639,7 @@ See `ebnf-style-database' documentation."
|
||||
See `ebnf-style-database' documentation."
|
||||
(interactive "SStyle name: \nXStyle values: ")
|
||||
(let ((style (or (assoc name ebnf-style-database)
|
||||
(error "Style name does'nt exist: %s" name)))
|
||||
(error "Style name doesn't exist: %s" name)))
|
||||
(merge (ebnf-check-style-values values))
|
||||
val elt new check)
|
||||
;; modify value of existing variables
|
||||
|
Loading…
Reference in New Issue
Block a user