User: aidan
Date: 06/04/29 21:06:09
Modified: packages/xemacs-packages/semantic ChangeLog semantic-java.el
Log:
Fix \u problems in packages from my last commit.
Revision Changes Path
1.23 +5 -0 XEmacs/packages/xemacs-packages/perl-modes/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/perl-modes/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -p -r1.22 -r1.23
--- ChangeLog 2005/04/27 12:45:03 1.22
+++ ChangeLog 2006/04/29 19:06:05 1.23
@@ -1,3 +1,8 @@
+2006-04-29 Aidan Kehoe <kehoea(a)parhasard.net>
+
+ * cperl-mode.el (cperl-short-docs):
+ '\u' => '\\u' as it should have been in the first place.
+
2005-04-27 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.08 released.
1.10 +1 -1 XEmacs/packages/xemacs-packages/perl-modes/cperl-mode.el
Index: cperl-mode.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/perl-modes/cperl-mode.el,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -p -r1.9 -r1.10
--- cperl-mode.el 2005/04/27 11:16:56 1.9
+++ cperl-mode.el 2006/04/29 19:06:05 1.10
@@ -7638,7 +7638,7 @@ $~ The name of the current report format
\\0 Octal char, e.g. \\033.
\\E Case modification terminator. See \\Q, \\L, and \\U.
\\L Lowercase until \\E . See also \l, lc.
-\\U Upcase until \\E . See also \u, uc.
+\\U Upcase until \\E . See also \\u, uc.
\\Q Quote metacharacters until \\E . See also quotemeta.
\\a Alarm character (octal 007).
\\b Backspace character (octal 010).
1.41 +5 -0 XEmacs/packages/xemacs-packages/semantic/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/semantic/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -p -r1.40 -r1.41
--- ChangeLog 2006/02/28 06:19:44 1.40
+++ ChangeLog 2006/04/29 19:06:09 1.41
@@ -1,3 +1,8 @@
+2006-04-29 Aidan Kehoe <kehoea(a)parhasard.net>
+
+ * semantic-java.el (semantic-java-keyword-table):
+ '\u' => '\\u' as it should have been in the first place.
+
2006-02-28 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.20 released.
1.6 +1 -1 XEmacs/packages/xemacs-packages/semantic/semantic-java.el
Index: semantic-java.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/semantic/semantic-java.el,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- semantic-java.el 2003/01/06 12:12:48 1.5
+++ semantic-java.el 2006/04/29 19:06:09 1.6
@@ -497,7 +497,7 @@
("byte" summary "Integral primitive type (-128 to 127)")
("case" summary "switch(<expr>) {case <const-expr>:
<stmts> ... }")
("catch" summary "try {<stmts>} catch(<parm>)
{<stmts>} ... ")
- ("char" summary "Integral primitive type ('\u0000' to
'\uffff') (0 to 65535)")
+ ("char" summary "Integral primitive type ('\\u0000' to
'\\uffff') (0 to 65535)")
("class" summary "Class declaration: class <name>")
("const" summary "Unused reserved word")
("continue" summary "continue [<label>] ;")
Show replies by date