Skip to content

Commit 0ab976b

Browse files
committed
---
yaml --- r: 51626 b: refs/heads/incoming c: 218093d h: refs/heads/master v: v3
1 parent e93fcca commit 0ab976b

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: 8eb2bab100b42f0ba751552d8eff00eb2134c55a
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/incoming: 8604165871d2744ea762f762c95d4aef66e8eba0
9+
refs/heads/incoming: 218093d912b3725251e7a97d44f03321ba856ce6
1010
refs/heads/dist-snap: 8b98e5a296d95c5e832db0756828e5bec31c6f50
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/configure

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -406,12 +406,13 @@ fi
406406

407407
if [ ! -z "$CFG_PANDOC" ]
408408
then
409-
PANDOC_VER_LINE=$(pandoc --version | grep '^pandoc ')
410-
PANDOC_VER=${PANDOC_VER_LINE#pandoc }
411-
PV_MAJOR_MINOR=${PANDOC_VER%.[0-9]*}
412-
PV_MAJOR=${PV_MAJOR_MINOR%%[.][0-9]*}
413-
PV_MINOR=${PV_MAJOR_MINOR#[0-9]*[.]}
414-
PV_MINOR=${PV_MINOR%%[.][0-9]*}
409+
PV_MAJOR_MINOR=$(pandoc --version | grep '^pandoc ' |
410+
# extract the first 2 version fields, ignore everything else
411+
sed 's/pandoc \([0-9]*\)\.\([0-9]*\).*/\1 \2/')
412+
413+
# these patterns are shell globs, *not* regexps
414+
PV_MAJOR=${PV_MAJOR_MINOR% *}
415+
PV_MINOR=${PV_MAJOR_MINOR#* }
415416
if [ "$PV_MAJOR" -lt "1" ] || [ "$PV_MINOR" -lt "8" ]
416417
then
417418
step_msg "pandoc $PV_MAJOR.$PV_MINOR is too old. disabling"

branches/incoming/src/etc/kate/rust.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
<list name="keywords">
1919
<item> as </item>
2020
<item> break </item>
21+
<item> const </item>
2122
<item> copy </item>
2223
<item> do </item>
2324
<item> drop </item>
@@ -28,17 +29,18 @@
2829
<item> if </item>
2930
<item> impl </item>
3031
<item> let </item>
32+
<item> log </item>
3133
<item> loop </item>
3234
<item> match </item>
3335
<item> mod </item>
3436
<item> mut </item>
3537
<item> priv </item>
3638
<item> pub </item>
39+
<item> pure </item>
3740
<item> ref </item>
3841
<item> return </item>
3942
<item> static </item>
4043
<item> struct </item>
41-
<item> super </item>
4244
<item> trait </item>
4345
<item> unsafe </item>
4446
<item> use </item>

0 commit comments

Comments
 (0)