Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
db3b7db5
Commit
db3b7db5
authored
Jun 16, 2013
by
Stefan Monnier
Browse files
* lisp/international/characters.el (standard-case-table): Set syntax of ?»
and ?« to punctuation.
parent
7545bd25
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletion
+15
-1
etc/NEWS
etc/NEWS
+3
-0
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/international/characters.el
lisp/international/characters.el
+7
-1
No files found.
etc/NEWS
View file @
db3b7db5
...
@@ -415,6 +415,9 @@ It is layered as:
...
@@ -415,6 +415,9 @@ It is layered as:
*
Incompatible Lisp Changes in Emacs 24.4
*
Incompatible Lisp Changes in Emacs 24.4
** The syntax of ?» and ?« is now punctuation instead of matched parens.
Some languages match those as »...« and others as «...» so better stay neutral.
** The default file coding for Emacs Lisp files is now utf-8.
** The default file coding for Emacs Lisp files is now utf-8.
(See
file-coding-system-alist.) In most cases, this change is transparent, but
(See
file-coding-system-alist.) In most cases, this change is transparent, but
files that contain unusual characters without specifying an explicit coding
files that contain unusual characters without specifying an explicit coding
...
...
lisp/ChangeLog
View file @
db3b7db5
2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
* international/characters.el (standard-case-table): Set syntax of ?»
and ?« to punctuation.
2013-06-16 Juanma Barranquero <lekktu@gmail.com>
2013-06-16 Juanma Barranquero <lekktu@gmail.com>
* progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
* progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
lisp/international/characters.el
View file @
db3b7db5
...
@@ -512,7 +512,13 @@ with L, LRE, or LRO Unicode bidi character type.")
...
@@ -512,7 +512,13 @@ with L, LRE, or LRO Unicode bidi character type.")
(
set-case-syntax
?
¦
"_"
tbl
)
(
set-case-syntax
?
¦
"_"
tbl
)
(
set-case-syntax
?
§
"."
tbl
)
(
set-case-syntax
?
§
"."
tbl
)
(
set-case-syntax
?
©
"_"
tbl
)
(
set-case-syntax
?
©
"_"
tbl
)
(
set-case-syntax-delims
171
187
tbl
)
; « »
;; French wants
;; (set-case-syntax-delims ?« ?» tbl)
;; And German wants
;; (set-case-syntax-delims ?» ?« tbl)
;; So let's stay neutral and let users set these up if/when they want to.
(
set-case-syntax
?
«
"."
tbl
)
(
set-case-syntax
?
»
"."
tbl
)
(
set-case-syntax
?
¬
"_"
tbl
)
(
set-case-syntax
?
¬
"_"
tbl
)
(
set-case-syntax
?
"_"
tbl
)
(
set-case-syntax
?
"_"
tbl
)
(
set-case-syntax
?
®
"_"
tbl
)
(
set-case-syntax
?
®
"_"
tbl
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment