mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-10 00:00:39 -08:00
facb5e2Update Emacs manual section related to character folding4efea8e; * etc/DEBUG: Fix a typo. (Bug#22984)f8df21bUpdate admin/notes/unicode950be68Add symref-filepattern entries for c?perl-mode8b8a6adDon't use XRANDR 1.3 extensions if the server doesn't support them.985dacf; NEWS update for the last change in etags741a6f8Sync with gnulib7352c6cRework C source files to avoid ^(a589e9aBy default, etags produces unqualified Perl tag names72c7438Indent methods with keyword names correctly28532a9Propertize character literals and special global variables differentlya7d6f39; Fix last change in NEWS83b2a20Change how /etc/NEWS presents character foldingb417c5aRevert "Revert "Backport: * lisp/isearch.el: Turn char-folding off by default""711ca36Properly handle lambda as read function (bug 22961)1b9d616Propertize operator symbol names with symbol syntax class9b16bc2Stop recognizing :#{} as symbol in ruby-mode366ec77Allow using the left shift operator without spaces on both sides02bf7ccProperly handle unquoting in wdired (bug 22938)16cf469; Spelling fix and tighten up commentf50bc04Allow splat operator before percent literal991c801Don't apply the return value of goto-char as syntax class6e63b3eGuard against nested percent literals066f3bcRecognize iuwu-mod after an escaped newline6f7a57cFix symbolic mode string conversion for s and t50b9826Update 'ucs-names' database993b2fbImprove doc string of 'shell-command'b71c717Make the code in movemail_strftime more generalcc057e4Speed up redisplay of binary files with long series of nullse51b27eRemove the highlighting support for quoting 'like this' inside Lisp docstringsb1abce1Restore leading space in movemail pop output98b8d44Fix bidi-paragraph-direction in Rmail view bufferdc9d837Don't misindent computed property generator methods7923112Fix mbox files produced by movemail on MS-Windowsc45a1cadoc string file descriptor exhaustion fix265141bFix Bug#22814
101 lines
1,015 B
JavaScript
101 lines
1,015 B
JavaScript
var a = 1;
|
|
b = 2;
|
|
|
|
let c = 1,
|
|
d = 2;
|
|
|
|
var e = 100500,
|
|
+ 1;
|
|
|
|
function test ()
|
|
{
|
|
return /[/]/.test ('/') // (bug#19397)
|
|
}
|
|
|
|
var f = bar('/protocols/')
|
|
baz();
|
|
|
|
var h = 100500
|
|
1;
|
|
|
|
const i = 1,
|
|
j = 2;
|
|
|
|
var k = 1,
|
|
l = [
|
|
1, 2,
|
|
3, 4
|
|
],
|
|
m = 5;
|
|
|
|
var n = function() {
|
|
return 7;
|
|
},
|
|
o = 8;
|
|
|
|
foo(bar, function() {
|
|
return 2;
|
|
});
|
|
|
|
switch (b) {
|
|
case "a":
|
|
2;
|
|
default:
|
|
3;
|
|
}
|
|
|
|
var p = {
|
|
case: 'zzzz',
|
|
default: 'donkey',
|
|
tee: 'ornery'
|
|
};
|
|
|
|
var evens = [e for each (e in range(0, 21))
|
|
if (ed % 2 == 0)];
|
|
|
|
!b
|
|
!=b
|
|
!==b
|
|
|
|
a++
|
|
b +=
|
|
c
|
|
|
|
baz(`http://foo.bar/${tee}`)
|
|
.qux();
|
|
|
|
`multiline string
|
|
contents
|
|
are kept
|
|
unchanged!`
|
|
|
|
class A {
|
|
* x() {
|
|
return 1
|
|
* a(2);
|
|
}
|
|
|
|
*[Symbol.iterator]() {
|
|
yield "Foo";
|
|
yield "Bar";
|
|
}
|
|
}
|
|
|
|
if (true)
|
|
1
|
|
else
|
|
2
|
|
|
|
Foobar
|
|
.find()
|
|
.catch((err) => {
|
|
return 2;
|
|
})
|
|
.then((num) => {
|
|
console.log(num);
|
|
});
|
|
|
|
// Local Variables:
|
|
// indent-tabs-mode: nil
|
|
// js-indent-level: 2
|
|
// End:
|