Skip to content

Commit

Permalink
Merge pull request #1077 from yast/sw_04
Browse files Browse the repository at this point in the history
add space to SPACE_CHARS (bsc#1173907)
  • Loading branch information
wfeldt committed Jul 9, 2020
2 parents c62889e + cc95fce commit 5265884
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/types/src/modules/String.rb
Expand Up @@ -39,7 +39,7 @@ class StringClass < Module
ALPHA_NUM_CHARS = ALPHA_CHARS + DIGIT_CHARS
PUNCT_CHARS = "!\"\#$%&'()*+,-./:;<=>?@[\\]^_`{|}~".freeze
GRAPHICAL_CHARS = ALPHA_NUM_CHARS + PUNCT_CHARS
SPACE_CHARS = "\f\r\n\t\v".freeze
SPACE_CHARS = " \f\r\n\t\v".freeze
PRINTABLE_CHARS = SPACE_CHARS + GRAPHICAL_CHARS

def main
Expand Down
6 changes: 6 additions & 0 deletions package/yast2.changes
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Jul 9 14:35:43 UTC 2020 - Steffen Winterfeldt <snwint@suse.com>

- add space to SPACE_CHARS (bsc#1173907)
- 4.3.14

-------------------------------------------------------------------
Tue Jul 7 09:48:04 CEST 2020 - schubi@suse.de

Expand Down
2 changes: 1 addition & 1 deletion package/yast2.spec
Expand Up @@ -17,7 +17,7 @@


Name: yast2
Version: 4.3.13
Version: 4.3.14
Release: 0
Summary: YaST2 Main Package
License: GPL-2.0-only
Expand Down

0 comments on commit 5265884

Please sign in to comment.