diff options
| author | Richard M. Stallman | 2001-12-19 16:33:16 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-12-19 16:33:16 +0000 |
| commit | 467412aa96a8c1d5f67868223cc3e89f20d0ab77 (patch) | |
| tree | a4326c0dbd090931bc453e39b7068cc6bb1ca4f8 | |
| parent | c513fc0381564b597b797085ed9fae1ce6883d20 (diff) | |
| download | emacs-467412aa96a8c1d5f67868223cc3e89f20d0ab77.tar.gz emacs-467412aa96a8c1d5f67868223cc3e89f20d0ab77.zip | |
(describe-language-environment): Fix calls to help-xref-button.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/international/mule-cmds.el | 9 |
2 files changed, 8 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 92d5efc5f58..b10a54d5253 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-12-19 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * international/mule-cmds.el (describe-language-environment): | ||
| 4 | Fix calls to help-xref-button. | ||
| 5 | |||
| 1 | 2001-12-19 Miles Bader <miles@gnu.org> | 6 | 2001-12-19 Miles Bader <miles@gnu.org> |
| 2 | 7 | ||
| 3 | * international/fontset.el: Require `ind-util' when compiling. | 8 | * international/fontset.el: Require `ind-util' when compiling. |
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index 47cac486fa0..3469b9ae023 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el | |||
| @@ -1606,8 +1606,7 @@ of buffer-file-coding-system set by this function." | |||
| 1606 | (when (string= language-name (nth 1 (car l))) | 1606 | (when (string= language-name (nth 1 (car l))) |
| 1607 | (insert " " (car (car l))) | 1607 | (insert " " (car (car l))) |
| 1608 | (search-backward (car (car l))) | 1608 | (search-backward (car (car l))) |
| 1609 | (help-xref-button 0 #'describe-input-method (car (car l)) | 1609 | (help-xref-button 0 'help-input-method (car (car l))) |
| 1610 | "mouse-2, RET: describe this input method") | ||
| 1611 | (goto-char (point-max)) | 1610 | (goto-char (point-max)) |
| 1612 | (insert " (\"" | 1611 | (insert " (\"" |
| 1613 | (if (stringp (nth 3 (car l))) | 1612 | (if (stringp (nth 3 (car l))) |
| @@ -1623,8 +1622,7 @@ of buffer-file-coding-system set by this function." | |||
| 1623 | (while l | 1622 | (while l |
| 1624 | (insert " " (symbol-name (car l))) | 1623 | (insert " " (symbol-name (car l))) |
| 1625 | (search-backward (symbol-name (car l))) | 1624 | (search-backward (symbol-name (car l))) |
| 1626 | (help-xref-button 0 #'describe-character-set (car l) | 1625 | (help-xref-button 0 'help-character-set (car l)) |
| 1627 | "mouse-2, RET: describe this character set") | ||
| 1628 | (goto-char (point-max)) | 1626 | (goto-char (point-max)) |
| 1629 | (insert ": " (charset-description (car l)) "\n") | 1627 | (insert ": " (charset-description (car l)) "\n") |
| 1630 | (setq l (cdr l))))) | 1628 | (setq l (cdr l))))) |
| @@ -1636,8 +1634,7 @@ of buffer-file-coding-system set by this function." | |||
| 1636 | (while l | 1634 | (while l |
| 1637 | (insert " " (symbol-name (car l))) | 1635 | (insert " " (symbol-name (car l))) |
| 1638 | (search-backward (symbol-name (car l))) | 1636 | (search-backward (symbol-name (car l))) |
| 1639 | (help-xref-button 0 #'describe-coding-system (car l) | 1637 | (help-xref-button 0 'help-coding-system (car l)) |
| 1640 | "mouse-2, RET: describe this coding system") | ||
| 1641 | (goto-char (point-max)) | 1638 | (goto-char (point-max)) |
| 1642 | (insert " (`" | 1639 | (insert " (`" |
| 1643 | (coding-system-mnemonic (car l)) | 1640 | (coding-system-mnemonic (car l)) |