GNU bug report logs -
#4817
unclear value type of select-safe-coding-system-accept-default-p
Previous Next
Full log
Message #5 received at submit <at> emacsbugs.donarmstrong.com (full text, mbox):
GNU Emacs Lisp Reference Manual
33.9.4 User-Chosen Coding Systems
Function: select-safe-coding-system from to &optional default-coding-system accept-default-p file
Quotation 1:
> The optional argument accept-default-p, if non-nil, should be a
> function to determine whether a coding system selected without user
> interaction is acceptable. select-safe-coding-system calls this
> function with one argument, the base coding system of the selected
> coding system. If accept-default-p returns nil,
> select-safe-coding-system rejects the silently selected coding system,
> and asks the user to select a coding system from a list of possible
> candidates.
Quotation 2:
> If the variable select-safe-coding-system-accept-default-p is non-nil,
> its value overrides the value of accept-default-p.
I cannot quite decide which of the following two alternatives is the problem:
=========================================================================
Alternative 1:
The value of select-safe-coding-system-accept-default-p can be either nil
or a symbol naming a coding system (e.g., mule-utf-8-unix)
In this case the sentence in quotation 2 might need some rephrasing, such as
"..., its value overrides the value returned by the function that is
the actual argument for accept-default-p"
=========================================================================
Alternative 2:
The value of select-safe-coding-system-accept-default-p can be either nil
or a one-argument function that returns either nil or a symbol naming a
coding system.
If this is what quotation 2 means (and I understood it to mean this),
one of the following entries in the init file would seem to make sense:
(custom-set-variables
;; ...
'(select-safe-coding-system-accept-default-p
(function (lambda (coding-system)
(read-coding-system (format "Coding system [%s]: " coding-system)
coding-system))))
)
or
(custom-set-variables
;; ...
'(select-safe-coding-system-accept-default-p
(function (lambda (coding-system) nil)))
)
However, when I cause a situation where this code is evaluated, I get
select-safe-coding-system: Wrong type argument: listp, mule-utf-8-unix
=========================================================================
Norbert Eisinger
This bug report was last modified 15 years and 207 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.