all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#5380: Problem with command sgml-name-8bit-mode in GNU emacs 23.1
@ 2010-01-14 22:16 Volker Kiefel
  2010-01-21  1:56 ` Chong Yidong
  2010-01-21  1:56 ` Chong Yidong
  0 siblings, 2 replies; 7+ messages in thread
From: Volker Kiefel @ 2010-01-14 22:16 UTC (permalink / raw
  To: bug-gnu-emacs

Hello, dear maintainers of emacs and sgml-mode.el,

as a regular user of the html-mode of emacs I encountered a
problem with the function ``sgml-name-8bit-mode'', (menu option
(SGML/Toggle 8 bit insertion), as I changed to v23.1 of GNU
emacs. The problem encountered on the precompiled win32 version
and on the version in Linux compiled by myself.

After switching on the ``sgml name entity mode'' typing an umlaut
character like ä (a umlaut) now no more (as in previous emacs
versions and as expected) produces ``ä'' but ``\344''.

I hope that the problem can be fixed.

With kind regards
Volker Kiefel
Germany
---

In GNU Emacs 23.1.1 (i686-pc-linux-gnu, GTK+ Version 2.10.11)
  of 2010-01-09 on ubuntu
Windowing system distributor `The X.Org Foundation', version 11.0.70200000
configured using `configure  '--prefix=/home/kiefel/emacs-23.1''

Important settings:
   value of $LC_ALL: nil
   value of $LC_COLLATE: nil
   value of $LC_CTYPE: nil
   value of $LC_MESSAGES: nil
   value of $LC_MONETARY: nil
   value of $LC_NUMERIC: nil
   value of $LC_TIME: nil
   value of $LANG: de_DE.UTF-8
   value of $XMODIFIERS: nil
   locale-coding-system: utf-8-unix
   default-enable-multibyte-characters: t

Major mode: Lisp Interaction

Minor modes in effect:
   show-paren-mode: t
   tooltip-mode: t
   tool-bar-mode: t
   mouse-wheel-mode: t
   menu-bar-mode: t
   file-name-shadow-mode: t
   global-font-lock-mode: t
   font-lock-mode: t
   blink-cursor-mode: t
   global-auto-composition-mode: t
   auto-composition-mode: t
   auto-encryption-mode: t
   auto-compression-mode: t
   column-number-mode: t
   line-number-mode: t
   transient-mark-mode: t








^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#5380: Problem with command sgml-name-8bit-mode in GNU emacs 23.1
  2010-01-14 22:16 bug#5380: Problem with command sgml-name-8bit-mode in GNU emacs 23.1 Volker Kiefel
  2010-01-21  1:56 ` Chong Yidong
@ 2010-01-21  1:56 ` Chong Yidong
  1 sibling, 0 replies; 7+ messages in thread
From: Chong Yidong @ 2010-01-21  1:56 UTC (permalink / raw
  To: emacs-devel; +Cc: 5380

Could someone with a non-English keyboard please try to debug Bug#5380?

> I encountered a problem with the function ``sgml-name-8bit-mode'',
> (menu option (SGML/Toggle 8 bit insertion)...  After switching on the
> ``sgml name entity mode'' typing an umlaut character like ä (a umlaut)
> now no more (as in previous emacs versions and as expected) produces
> ``ä'' but ``\344''.

In sgml-mode-map, we do the following:

    (let ((c 127)
          (map (nth 1 map)))
      (while (< (setq c (1+ c)) 256)
        (aset map c 'sgml-maybe-name-self)))

where

(defun sgml-maybe-name-self ()
  "Insert a symbolic character name according to `sgml-char-names'."
  (interactive "*")
  (if sgml-name-8bit-mode
      (let ((mc last-command-event))
	(if (< mc 256)
	    (setq mc (unibyte-char-to-multibyte mc)))
	(or mc (setq mc last-command-event))
	(sgml-name-char mc))
    (self-insert-command 1)))

This must have broken with the switch to unicode, but it's inconvenient
for me to debug without a keyboard that can produce these characters.






^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Problem with command sgml-name-8bit-mode in GNU emacs 23.1
@ 2010-01-21  1:56 ` Chong Yidong
  2010-01-21  2:47   ` bug#5380: " Kenichi Handa
  2010-01-21  2:47   ` Kenichi Handa
  0 siblings, 2 replies; 7+ messages in thread
From: Chong Yidong @ 2010-01-21  1:56 UTC (permalink / raw
  To: emacs-devel; +Cc: 5380

Could someone with a non-English keyboard please try to debug Bug#5380?

> I encountered a problem with the function ``sgml-name-8bit-mode'',
> (menu option (SGML/Toggle 8 bit insertion)...  After switching on the
> ``sgml name entity mode'' typing an umlaut character like ä (a umlaut)
> now no more (as in previous emacs versions and as expected) produces
> ``&auml;'' but ``\344''.

In sgml-mode-map, we do the following:

    (let ((c 127)
          (map (nth 1 map)))
      (while (< (setq c (1+ c)) 256)
        (aset map c 'sgml-maybe-name-self)))

where

(defun sgml-maybe-name-self ()
  "Insert a symbolic character name according to `sgml-char-names'."
  (interactive "*")
  (if sgml-name-8bit-mode
      (let ((mc last-command-event))
	(if (< mc 256)
	    (setq mc (unibyte-char-to-multibyte mc)))
	(or mc (setq mc last-command-event))
	(sgml-name-char mc))
    (self-insert-command 1)))

This must have broken with the switch to unicode, but it's inconvenient
for me to debug without a keyboard that can produce these characters.




^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#5380: Problem with command sgml-name-8bit-mode in GNU emacs 23.1
  2010-01-21  1:56 ` Chong Yidong
@ 2010-01-21  2:47   ` Kenichi Handa
  2010-01-21  2:47   ` Kenichi Handa
  1 sibling, 0 replies; 7+ messages in thread
From: Kenichi Handa @ 2010-01-21  2:47 UTC (permalink / raw
  To: Chong Yidong; +Cc: 5380, emacs-devel

In article <87tyugfcfs.fsf@stupidchicken.com>, Chong Yidong <cyd@stupidchicken.com> writes:

> Could someone with a non-English keyboard please try to debug Bug#5380?
> > I encountered a problem with the function ``sgml-name-8bit-mode'',
> > (menu option (SGML/Toggle 8 bit insertion)...  After switching on the
> > ``sgml name entity mode'' typing an umlaut character like ä (a umlaut)
> > now no more (as in previous emacs versions and as expected) produces
> > ``&auml;'' but ``\344''.

> In sgml-mode-map, we do the following:

>     (let ((c 127)
>           (map (nth 1 map)))
>       (while (< (setq c (1+ c)) 256)
>         (aset map c 'sgml-maybe-name-self)))

> where

> (defun sgml-maybe-name-self ()
>   "Insert a symbolic character name according to `sgml-char-names'."
>   (interactive "*")
>   (if sgml-name-8bit-mode
>       (let ((mc last-command-event))
> 	(if (< mc 256)
> 	    (setq mc (unibyte-char-to-multibyte mc)))
> 	(or mc (setq mc last-command-event))
> 	(sgml-name-char mc))
>     (self-insert-command 1)))

> This must have broken with the switch to unicode, 

As Emacs receives already decoded character event now,
defining sgml-maybe-name-self simply as below will work.

(defun sgml-maybe-name-self ()
  "Insert a symbolic character name according to `sgml-char-names'."
  (interactive "*")
  (if sgml-name-8bit-mode
      (sgml-name-char last-command-event)
    (self-insert-command 1)))

> but it's inconvenient for me to debug without a keyboard
> that can produce these characters.

You can test it as below:

(let ((sgml-name-8bit-mode t)
      (last-command-event #xC0))
  (call-interactively 'sgml-maybe-name-self))

---
Kenichi Handa
handa@m17n.org






^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: bug#5380: Problem with command sgml-name-8bit-mode in GNU emacs 23.1
  2010-01-21  1:56 ` Chong Yidong
  2010-01-21  2:47   ` bug#5380: " Kenichi Handa
@ 2010-01-21  2:47   ` Kenichi Handa
  2010-01-21 14:02     ` Chong Yidong
  2010-01-21 14:02     ` Chong Yidong
  1 sibling, 2 replies; 7+ messages in thread
From: Kenichi Handa @ 2010-01-21  2:47 UTC (permalink / raw
  To: Chong Yidong; +Cc: 5380, emacs-devel

In article <87tyugfcfs.fsf@stupidchicken.com>, Chong Yidong <cyd@stupidchicken.com> writes:

> Could someone with a non-English keyboard please try to debug Bug#5380?
> > I encountered a problem with the function ``sgml-name-8bit-mode'',
> > (menu option (SGML/Toggle 8 bit insertion)...  After switching on the
> > ``sgml name entity mode'' typing an umlaut character like ä (a umlaut)
> > now no more (as in previous emacs versions and as expected) produces
> > ``&auml;'' but ``\344''.

> In sgml-mode-map, we do the following:

>     (let ((c 127)
>           (map (nth 1 map)))
>       (while (< (setq c (1+ c)) 256)
>         (aset map c 'sgml-maybe-name-self)))

> where

> (defun sgml-maybe-name-self ()
>   "Insert a symbolic character name according to `sgml-char-names'."
>   (interactive "*")
>   (if sgml-name-8bit-mode
>       (let ((mc last-command-event))
> 	(if (< mc 256)
> 	    (setq mc (unibyte-char-to-multibyte mc)))
> 	(or mc (setq mc last-command-event))
> 	(sgml-name-char mc))
>     (self-insert-command 1)))

> This must have broken with the switch to unicode, 

As Emacs receives already decoded character event now,
defining sgml-maybe-name-self simply as below will work.

(defun sgml-maybe-name-self ()
  "Insert a symbolic character name according to `sgml-char-names'."
  (interactive "*")
  (if sgml-name-8bit-mode
      (sgml-name-char last-command-event)
    (self-insert-command 1)))

> but it's inconvenient for me to debug without a keyboard
> that can produce these characters.

You can test it as below:

(let ((sgml-name-8bit-mode t)
      (last-command-event #xC0))
  (call-interactively 'sgml-maybe-name-self))

---
Kenichi Handa
handa@m17n.org




^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#5380: Problem with command sgml-name-8bit-mode in GNU emacs 23.1
  2010-01-21  2:47   ` Kenichi Handa
@ 2010-01-21 14:02     ` Chong Yidong
  2010-01-21 14:02     ` Chong Yidong
  1 sibling, 0 replies; 7+ messages in thread
From: Chong Yidong @ 2010-01-21 14:02 UTC (permalink / raw
  To: Kenichi Handa; +Cc: 5380, emacs-devel

Kenichi Handa <handa@m17n.org> writes:

> As Emacs receives already decoded character event now,
> defining sgml-maybe-name-self simply as below will work.

Ah, that seems to work.  Thanks very much.






^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: bug#5380: Problem with command sgml-name-8bit-mode in GNU emacs 23.1
  2010-01-21  2:47   ` Kenichi Handa
  2010-01-21 14:02     ` Chong Yidong
@ 2010-01-21 14:02     ` Chong Yidong
  1 sibling, 0 replies; 7+ messages in thread
From: Chong Yidong @ 2010-01-21 14:02 UTC (permalink / raw
  To: Kenichi Handa; +Cc: 5380, emacs-devel

Kenichi Handa <handa@m17n.org> writes:

> As Emacs receives already decoded character event now,
> defining sgml-maybe-name-self simply as below will work.

Ah, that seems to work.  Thanks very much.




^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-01-21 14:02 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-14 22:16 bug#5380: Problem with command sgml-name-8bit-mode in GNU emacs 23.1 Volker Kiefel
2010-01-21  1:56 ` Chong Yidong
2010-01-21  2:47   ` bug#5380: " Kenichi Handa
2010-01-21  2:47   ` Kenichi Handa
2010-01-21 14:02     ` Chong Yidong
2010-01-21 14:02     ` Chong Yidong
2010-01-21  1:56 ` Chong Yidong

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.