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
175600da
Commit
175600da
authored
Mar 12, 2013
by
Stefan Monnier
Browse files
* lisp/international/mule.el (find-auto-coding): Include file name in
obsolescence warning. Fixes: debbugs:13922
parent
9e3edd30
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/international/mule.el
lisp/international/mule.el
+5
-2
No files found.
lisp/ChangeLog
View file @
175600da
2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
* international/mule.el (find-auto-coding): Include file name in
obsolescence warning (bug#13922).
2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
* progmodes/cfengine.el (cfengine-parameters-indent): New variable
...
...
lisp/international/mule.el
View file @
175600da
...
...
@@ -1844,8 +1844,11 @@ If nothing is specified, the return value is nil."
(
re-search-forward
"\\(.*;\\)?[ \t]*unibyte:[ \t]*\\([^ ;]+\\)"
head-end
t
))
(
display-warning
'mule
"
`
unibyte:
t
'
is
obsolete
; \
use
\"coding:
'raw-text\"
instead.
" :warning)
(
display-warning
'mule
(
format
"
\"unibyte:
t\"
(
in
%s
)
is
obsolete
; \
use
\"coding:
'raw-text\"
instead.
"
(file-relative-name filename))
:warning)
(setq coding-system 'raw-text))
(when (and (not coding-system)
(re-search-forward
...
...
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