Skip to content

Commit

Permalink
Remove Unicode triple dot in favor of ASCII one
Browse files Browse the repository at this point in the history
Remove Unicode triple dot in favor of ASCII one because it breaks
initialization with message:
"*temp file*" default encoding cannot encode
  • Loading branch information
nshadov authored and duianto committed Jul 30, 2019
1 parent 7bc23b8 commit 0e03199
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.develop
Original file line number Diff line number Diff line change
Expand Up @@ -566,6 +566,8 @@ Other:
- Added missing force argument to the =spacemacs//init-spacemacs-env= call in
the function =spacemacs/load-spacemacs-env= (thanks to sergeiz2)
- Fixed =spacemacs/alternate-buffer= to restore point.
- Removed Unicode triple dot in both =dotspacemacs-smart-closing-parenthesis=
variable comments in favor of the ASCII one (thanks to nshadov)
- Other:
- New function =configuration-layer/message= to display message in
=*Messages*= buffer (thanks to Sylvain Benner)
Expand Down
4 changes: 2 additions & 2 deletions core/core-dotspacemacs.el
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,8 @@ Has no effect if `dotspacemacs-enable-server' is nil.")

(defvar dotspacemacs-smart-closing-parenthesis nil
"If non-nil pressing the closing parenthesis `)' key in insert mode passes
over any automatically added closing parenthesis, bracket, quote, etc
This can be temporary disabled by pressing `C-q' before `)'.")
over any automatically added closing parenthesis, bracket, quote, etc...
This can be temporary disabled by pressing `C-q' before `)'. (default nil)")

(defvar dotspacemacs-zone-out-when-idle nil
"Either nil or a number of seconds. If non-nil zone out after the specified
Expand Down
2 changes: 1 addition & 1 deletion core/templates/.spacemacs.template
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ It should only modify the values of Spacemacs settings."
dotspacemacs-smartparens-strict-mode nil

;; If non-nil pressing the closing parenthesis `)' key in insert mode passes
;; over any automatically added closing parenthesis, bracket, quote, etc
;; over any automatically added closing parenthesis, bracket, quote, etc...
;; This can be temporary disabled by pressing `C-q' before `)'. (default nil)
dotspacemacs-smart-closing-parenthesis nil

Expand Down

0 comments on commit 0e03199

Please sign in to comment.