Now on revision 111933. ------------------------------------------------------------ revno: 111933 committer: Dmitry Antipov branch nick: trunk timestamp: Mon 2013-03-04 11:41:01 +0400 message: * font.c (Ffont_get_glyphs): Use convenient LGLYPH_NEW. * ftfont.c (ftfont_shape_by_flt): Likewise. * w32uniscribe.c (uniscribe_shape): Likewise. diff: === modified file 'src/ChangeLog' --- src/ChangeLog 2013-03-02 21:05:52 +0000 +++ src/ChangeLog 2013-03-04 07:41:01 +0000 @@ -1,3 +1,9 @@ +2013-03-04 Dmitry Antipov + + * font.c (Ffont_get_glyphs): Use convenient LGLYPH_NEW. + * ftfont.c (ftfont_shape_by_flt): Likewise. + * w32uniscribe.c (uniscribe_shape): Likewise. + 2013-03-02 Paul Eggert The lock for FILE is now .#FILE or .#-FILE (Bug#13807). @@ -208,6 +214,7 @@ of dumping Emacs. Explain why. 2013-02-20 Dmitry Antipov + * search.c (find_newline): Return byte position in bytepos. Adjust comment. (find_next_newline_no_quit, find_before_next_newline): === modified file 'src/font.c' --- src/font.c 2013-02-13 07:14:38 +0000 +++ src/font.c 2013-03-04 07:41:01 +0000 @@ -4716,7 +4716,7 @@ code = font->driver->encode_char (font, c); if (code == FONT_INVALID_CODE) continue; - g = Fmake_vector (make_number (LGLYPH_SIZE), Qnil); + g = LGLYPH_NEW (); LGLYPH_SET_FROM (g, i); LGLYPH_SET_TO (g, i); LGLYPH_SET_CHAR (g, c); === modified file 'src/ftfont.c' --- src/ftfont.c 2013-02-08 05:28:52 +0000 +++ src/ftfont.c 2013-03-04 07:41:01 +0000 @@ -2541,7 +2541,7 @@ if (NILP (lglyph)) { - lglyph = Fmake_vector (make_number (LGLYPH_SIZE), Qnil); + lglyph = LGLYPH_NEW (); LGSTRING_SET_GLYPH (lgstring, i, lglyph); } LGLYPH_SET_FROM (lglyph, g->from); === modified file 'src/w32uniscribe.c' --- src/w32uniscribe.c 2013-02-08 05:28:52 +0000 +++ src/w32uniscribe.c 2013-03-04 07:41:01 +0000 @@ -333,7 +333,7 @@ if (NILP (lglyph)) { - lglyph = Fmake_vector (make_number (LGLYPH_SIZE), Qnil); + lglyph = LGLYPH_NEW (); LGSTRING_SET_GLYPH (lgstring, lglyph_index, lglyph); } /* Copy to a 32-bit data type to shut up the ------------------------------------------------------------ revno: 111932 committer: Paul Eggert branch nick: trunk timestamp: Sun 2013-03-03 23:39:48 -0800 message: * semantic/wisent/wisent.el (wisent): Stick to ASCII in the ASCII art. diff: === modified file 'lisp/cedet/ChangeLog' --- lisp/cedet/ChangeLog 2013-03-04 07:25:17 +0000 +++ lisp/cedet/ChangeLog 2013-03-04 07:39:48 +0000 @@ -1,5 +1,7 @@ 2013-03-04 Paul Eggert + * semantic/wisent/wisent.el (wisent): Stick to ASCII in the ASCII art. + * semantic/wisent/javat-wy.el: Regenerate. 2012-11-19 Stefan Monnier === modified file 'lisp/cedet/semantic/wisent/wisent.el' --- lisp/cedet/semantic/wisent/wisent.el 2013-01-01 09:11:05 +0000 +++ lisp/cedet/semantic/wisent/wisent.el 2013-03-04 07:39:48 +0000 @@ -46,8 +46,8 @@ \\_ _/ ( `o ` (European ;-) Bison \\ ` / - ( D ,¨ for Emacs! - ` ~ ,¨ + ( D ,\" for Emacs! + ` ~ ,\" `\"\"" :group 'semantic) ------------------------------------------------------------ revno: 111931 fixes bug: http://debbugs.gnu.org/13862 committer: Glenn Morris branch nick: trunk timestamp: Sun 2013-03-03 23:37:30 -0800 message: * files.el (inhibit-local-variables-regexps): Add .diff and .patch. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2013-03-03 10:31:01 +0000 +++ lisp/ChangeLog 2013-03-04 07:37:30 +0000 @@ -1,3 +1,8 @@ +2013-03-04 Glenn Morris + + * files.el (inhibit-local-variables-regexps): + Add .diff and .patch. (Bug#13862) + 2013-03-03 Michael Albinus * net/tramp-adb.el (tramp-adb-maybe-open-connection): Cache, === modified file 'lisp/files.el' --- lisp/files.el 2013-02-25 14:29:41 +0000 +++ lisp/files.el 2013-03-04 07:37:30 +0000 @@ -2498,6 +2498,7 @@ "\\.zoo\\'" "\\.[jew]ar\\'" "\\.xpi\\'" "\\.rar\\'" "\\.7z\\'" "\\.sx[dmicw]\\'" "\\.odt\\'" + "\\.diff\\'" "\\.patch\\'" "\\.tiff?\\'" "\\.gif\\'" "\\.png\\'" "\\.jpe?g\\'")) "List of regexps matching file names in which to ignore local variables. This includes `-*-' lines as well as trailing \"Local Variables\" sections. ------------------------------------------------------------ revno: 111930 committer: Paul Eggert branch nick: trunk timestamp: Sun 2013-03-03 23:25:17 -0800 message: Fix encoding problem in javat-wy.el. * admin/grammars/java-tags.wy (CHAR): Remove "('\u0000' to '\uffff')" from summary, as this causes javat-wy.el to contain both a null byte and a byte sequence that is not valid UTF-8, which is inconvenient. * lisp/cedet/semantic/wisent/javat-wy.el: Regenerate. diff: === modified file 'admin/ChangeLog' --- admin/ChangeLog 2013-03-03 07:26:39 +0000 +++ admin/ChangeLog 2013-03-04 07:25:17 +0000 @@ -1,3 +1,9 @@ +2013-03-04 Paul Eggert + + * grammars/java-tags.wy (CHAR): Remove "('\u0000' to '\uffff')" + from summary, as this causes javat-wy.el to contain both a null byte + and a byte sequence that is not valid UTF-8, which is inconvenient. + 2013-03-03 Paul Eggert * bzrmerge.el (bzrmerge-apply): Omit Latin-1 char from diagnostic. === modified file 'admin/grammars/java-tags.wy' --- admin/grammars/java-tags.wy 2013-01-01 09:11:05 +0000 +++ admin/grammars/java-tags.wy 2013-03-04 07:25:17 +0000 @@ -154,7 +154,7 @@ %keyword CHAR "char" %put CHAR summary -"Integral primitive type ('\u0000' to '\uffff') (0 to 65535)" +"Integral primitive type (0 to 65535)" %keyword CLASS "class" %put CLASS summary @@ -312,7 +312,7 @@ %keyword WHILE "while" %put WHILE summary "while () | do while ();" - + ;; -------------------------- ;; Official javadoc line tags ;; -------------------------- @@ -340,27 +340,27 @@ %keyword _AUTHOR "@author" %put _AUTHOR javadoc (seq 1 usage (type)) %keyword _VERSION "@version" -%put _VERSION javadoc (seq 2 usage (type)) +%put _VERSION javadoc (seq 2 usage (type)) %keyword _PARAM "@param" -%put _PARAM javadoc (seq 3 usage (function) with-name t) +%put _PARAM javadoc (seq 3 usage (function) with-name t) %keyword _RETURN "@return" -%put _RETURN javadoc (seq 4 usage (function)) +%put _RETURN javadoc (seq 4 usage (function)) %keyword _EXCEPTION "@exception" -%put _EXCEPTION javadoc (seq 5 usage (function) with-name t) +%put _EXCEPTION javadoc (seq 5 usage (function) with-name t) %keyword _THROWS "@throws" -%put _THROWS javadoc (seq 6 usage (function) with-name t) +%put _THROWS javadoc (seq 6 usage (function) with-name t) %keyword _SEE "@see" -%put _SEE javadoc (seq 7 usage (type function variable) opt t with-ref t) +%put _SEE javadoc (seq 7 usage (type function variable) opt t with-ref t) %keyword _SINCE "@since" -%put _SINCE javadoc (seq 8 usage (type function variable) opt t) +%put _SINCE javadoc (seq 8 usage (type function variable) opt t) %keyword _SERIAL "@serial" -%put _SERIAL javadoc (seq 9 usage (variable) opt t) +%put _SERIAL javadoc (seq 9 usage (variable) opt t) %keyword _SERIALDATA "@serialData" -%put _SERIALDATA javadoc (seq 10 usage (function) opt t) +%put _SERIALDATA javadoc (seq 10 usage (function) opt t) %keyword _SERIALFIELD "@serialField" -%put _SERIALFIELD javadoc (seq 11 usage (variable) opt t) +%put _SERIALFIELD javadoc (seq 11 usage (variable) opt t) %keyword _DEPRECATED "@deprecated" -%put _DEPRECATED javadoc (seq 12 usage (type function variable) opt t) +%put _DEPRECATED javadoc (seq 12 usage (type function variable) opt t) %% @@ -387,7 +387,7 @@ ; ;;; Include file token -;; ("FILE" include SYSTEM "DOCSTRING") +;; ("FILE" include SYSTEM "DOCSTRING") import_declaration : IMPORT qualified_name SEMICOLON (INCLUDE-TAG $2 nil) @@ -476,7 +476,7 @@ ; ;;; Function token -;; ("NAME" function "TYPE" ( ARG-LIST ) EXTRA-SPEC "DOCSTRING") +;; ("NAME" function "TYPE" ( ARG-LIST ) EXTRA-SPEC "DOCSTRING") constructor_declaration : modifiers_opt constructor_declarator throwsc_opt constructor_body (FUNCTION-TAG (car $2) nil (cdr $2) @@ -491,11 +491,11 @@ ; constructor_body - : block + : block ; ;;; Function token -;; ("NAME" function "TYPE" ( ARG-LIST ) EXTRA-SPEC "DOCSTRING") +;; ("NAME" function "TYPE" ( ARG-LIST ) EXTRA-SPEC "DOCSTRING") method_declaration : modifiers_opt VOID method_declarator throwsc_opt method_body (FUNCTION-TAG (car $3) $2 (cdr $3) :typemodifiers $1 :throws $4) === modified file 'lisp/cedet/ChangeLog' --- lisp/cedet/ChangeLog 2013-01-02 16:13:04 +0000 +++ lisp/cedet/ChangeLog 2013-03-04 07:25:17 +0000 @@ -1,3 +1,7 @@ +2013-03-04 Paul Eggert + + * semantic/wisent/javat-wy.el: Regenerate. + 2012-11-19 Stefan Monnier * semantic/fw.el (semantic-make-local-hook, semantic-mode-line-update): === modified file 'lisp/cedet/semantic/wisent/javat-wy.el' --- lisp/cedet/semantic/wisent/javat-wy.el 2013-01-01 09:11:05 +0000 +++ lisp/cedet/semantic/wisent/javat-wy.el 2013-03-04 07:25:17 +0000 @@ -1,6 +1,6 @@ ;;; semantic/wisent/javat-wy.el --- Generated parser support file -;; Copyright (C) 2002, 2007, 2009-2013 Free Software Foundation, Inc. +;; Copyright (C) 2002-2013 Free Software Foundation, Inc. ;; This file is part of GNU Emacs. @@ -175,7 +175,7 @@ ("continue" summary "continue [