You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,10 @@ Scripting improvements
40
40
- ``functions`` and ``type`` now show where a function was copied and where it originally was instead of saying ``Defined interactively``.
41
41
- Stack trace now shows line numbers for copied functions.
42
42
- New option ``commandline --tokens-raw`` prints a list of tokens without any unescaping (:issue:`10212`).
43
+
- An integer overflow in ``string repeat`` leading to a near-infinite loop has been fixed (:issue:`9899`).
44
+
- ``string shorten`` behaves better in the presence of non-printable characters, including fixing an integer overflow that shortened strings more than intended. (:issue:`9854`)
45
+
- ``string pad`` no longer allows non-printable characters as padding. (:issue:`9854`)
46
+
- ``string repeat`` now allows omission of ``-n`` when the first argument is an integer. (:issue:`10282`)
43
47
44
48
Interactive improvements
45
49
------------------------
@@ -68,10 +72,7 @@ Improved terminal support
68
72
69
73
Other improvements
70
74
------------------
71
-
- An integer overflow in ``string repeat`` leading to a near-infinite loop has been fixed (:issue:`9899`).
72
-
- ``string shorten`` behaves better in the presence of non-printable characters, including fixing an integer overflow that shortened strings more than intended. (:issue:`9854`)
73
-
- ``string pad`` no longer allows non-printable characters as padding. (:issue:`9854`)
74
-
- ``string repeat`` now allows omission of ``-n`` when the first argument is an integer. (:issue:`10282`)
75
+
- ``fish_indent`` will now collapse multiple successive empty lines into one (:issue:`10325`).
0 commit comments