diff options
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/ChangeLog | 22 | ||||
| -rw-r--r-- | etc/DEBUG | 7 | ||||
| -rw-r--r-- | etc/NEWS | 49 | ||||
| -rw-r--r-- | etc/PROBLEMS | 18 | ||||
| -rw-r--r-- | etc/TUTORIAL.cs | 2 | ||||
| -rw-r--r-- | etc/TUTORIAL.ro | 12 | ||||
| -rw-r--r-- | etc/TUTORIAL.sk | 2 | ||||
| -rw-r--r-- | etc/TUTORIAL.translators | 38 | ||||
| -rw-r--r-- | etc/emacs-buffer.gdb | 10 |
9 files changed, 126 insertions, 34 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index 2a21b596300..9fb41788feb 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,25 @@ | |||
| 1 | 2005-06-11 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * DEBUG: Mention emacs-buffer.gdb. | ||
| 4 | |||
| 5 | 2005-06-10 Noah Friedman <friedman@splode.com> | ||
| 6 | |||
| 7 | * emacs-buffer.gdb (ybuffer-list): Don't use $filename; can't use | ||
| 8 | char as placeholder when buffer has no file name and process is | ||
| 9 | still live. Use different printf cases instead. | ||
| 10 | |||
| 11 | 2005-06-08 Kim F. Storm <storm@cua.dk> | ||
| 12 | |||
| 13 | * PROBLEMS: Linux kernel 2.6.10 may corrupt process output. | ||
| 14 | Warn that using CVS+SSH may corrupt files, include work-around. | ||
| 15 | |||
| 16 | 2005-06-06 Juri Linkov <juri@jurta.org> | ||
| 17 | |||
| 18 | * TUTORIAL.cs, TUTORIAL.sk: Change NBSP to space. | ||
| 19 | |||
| 20 | * TUTORIAL.ro: Change NBSP to space. Move coding cookie from the | ||
| 21 | second line to Local Variables. Fix title line. | ||
| 22 | |||
| 1 | 2005-05-30 Miles Bader <miles@gnu.org> | 23 | 2005-05-30 Miles Bader <miles@gnu.org> |
| 2 | 24 | ||
| 3 | * emacs-buffer.gdb: Remove RCS keywords. | 25 | * emacs-buffer.gdb: Remove RCS keywords. |
| @@ -576,6 +576,13 @@ these data structures on the respective headers to remove the `:N' | |||
| 576 | bitfield definitions (which will cause each such field to use a full | 576 | bitfield definitions (which will cause each such field to use a full |
| 577 | int). | 577 | int). |
| 578 | 578 | ||
| 579 | ** How to recover buffer contents from an Emacs core dump file | ||
| 580 | |||
| 581 | The file etc/emacs-buffer.gdb defines a set of GDB commands for | ||
| 582 | recovering the contents of Emacs buffers from a core dump file. You | ||
| 583 | might also find those commands useful for displaying the list of | ||
| 584 | buffers in human-readable format from within the debugger. | ||
| 585 | |||
| 579 | ** Some suggestions for debugging on MS Windows: | 586 | ** Some suggestions for debugging on MS Windows: |
| 580 | 587 | ||
| 581 | (written by Marc Fleischeuers, Geoff Voelker and Andrew Innes) | 588 | (written by Marc Fleischeuers, Geoff Voelker and Andrew Innes) |
| @@ -116,6 +116,7 @@ emacs crash. | |||
| 116 | 116 | ||
| 117 | * Startup Changes in Emacs 22.1 | 117 | * Startup Changes in Emacs 22.1 |
| 118 | 118 | ||
| 119 | +++ | ||
| 119 | ** New command line option -Q or --quick. | 120 | ** New command line option -Q or --quick. |
| 120 | This is like using -q --no-site-file, but in addition it also disables | 121 | This is like using -q --no-site-file, but in addition it also disables |
| 121 | the fancy startup screen. | 122 | the fancy startup screen. |
| @@ -710,6 +711,7 @@ gives the fraction of the window's width to scroll the window. | |||
| 710 | The variable `automatic-hscrolling' was renamed to | 711 | The variable `automatic-hscrolling' was renamed to |
| 711 | `auto-hscroll-mode'. The old name is still available as an alias. | 712 | `auto-hscroll-mode'. The old name is still available as an alias. |
| 712 | 713 | ||
| 714 | --- | ||
| 713 | *** Moving or scrolling through images (and other lines) taller that | 715 | *** Moving or scrolling through images (and other lines) taller that |
| 714 | the window now works sensibly, by automatically adjusting the window's | 716 | the window now works sensibly, by automatically adjusting the window's |
| 715 | vscroll property. | 717 | vscroll property. |
| @@ -796,6 +798,21 @@ appears in. | |||
| 796 | *** The variable `cursor-in-non-selected-windows' can now be set to any | 798 | *** The variable `cursor-in-non-selected-windows' can now be set to any |
| 797 | of the recognized cursor types. | 799 | of the recognized cursor types. |
| 798 | 800 | ||
| 801 | ** New faces: | ||
| 802 | |||
| 803 | +++ | ||
| 804 | *** `mode-line-highlight' is the standard face indicating mouse sensitive | ||
| 805 | elements on mode-line (and header-line) like `highlight' face on text | ||
| 806 | areas. | ||
| 807 | |||
| 808 | +++ | ||
| 809 | *** `shadow' face defines the appearance of the "shadowed" text, i.e. | ||
| 810 | the text which should be less noticeable than the surrounding text. | ||
| 811 | This can be achieved by using shades of grey in contrast with either | ||
| 812 | black or white default foreground color. This generic shadow face | ||
| 813 | allows customization of the appearance of shadowed text in one place, | ||
| 814 | so package-specific faces can inherit from it. | ||
| 815 | |||
| 799 | ** Font-Lock changes: | 816 | ** Font-Lock changes: |
| 800 | 817 | ||
| 801 | +++ | 818 | +++ |
| @@ -826,8 +843,10 @@ trouble with fontification and/or indentation. | |||
| 826 | +++ | 843 | +++ |
| 827 | *** New standard font-lock face `font-lock-preprocessor-face'. | 844 | *** New standard font-lock face `font-lock-preprocessor-face'. |
| 828 | 845 | ||
| 846 | +++ | ||
| 829 | *** New standard font-lock face `font-lock-comment-delimiter-face'. | 847 | *** New standard font-lock face `font-lock-comment-delimiter-face'. |
| 830 | 848 | ||
| 849 | +++ | ||
| 831 | *** Easy to overlook single character negation can now be font-locked. | 850 | *** Easy to overlook single character negation can now be font-locked. |
| 832 | You can use the new variable `font-lock-negation-char-face' and the face of | 851 | You can use the new variable `font-lock-negation-char-face' and the face of |
| 833 | the same name to customize this. Currently the cc-modes, sh-script-mode, | 852 | the same name to customize this. Currently the cc-modes, sh-script-mode, |
| @@ -1247,6 +1266,7 @@ modes (shell-mode etc) inserts arguments from previous command lines, | |||
| 1247 | like bash's `ESC .' binding. It is bound by default to `C-c .', but | 1266 | like bash's `ESC .' binding. It is bound by default to `C-c .', but |
| 1248 | otherwise behaves quite similarly to the bash version. | 1267 | otherwise behaves quite similarly to the bash version. |
| 1249 | 1268 | ||
| 1269 | +++ | ||
| 1250 | *** `comint-use-prompt-regexp-instead-of-fields' has been renamed | 1270 | *** `comint-use-prompt-regexp-instead-of-fields' has been renamed |
| 1251 | `comint-use-prompt-regexp'. The old name has been kept as an alias, | 1271 | `comint-use-prompt-regexp'. The old name has been kept as an alias, |
| 1252 | but declared obsolete. | 1272 | but declared obsolete. |
| @@ -1292,9 +1312,11 @@ buffer causes automatic display in another window of the corresponding | |||
| 1292 | matches, compilation errors, etc. This minor mode can be toggled with | 1312 | matches, compilation errors, etc. This minor mode can be toggled with |
| 1293 | C-c C-f. | 1313 | C-c C-f. |
| 1294 | 1314 | ||
| 1315 | +++ | ||
| 1295 | *** When the left fringe is displayed, an arrow points to current message in | 1316 | *** When the left fringe is displayed, an arrow points to current message in |
| 1296 | the compilation buffer. | 1317 | the compilation buffer. |
| 1297 | 1318 | ||
| 1319 | +++ | ||
| 1298 | *** The new variable `compilation-context-lines' controls lines of leading | 1320 | *** The new variable `compilation-context-lines' controls lines of leading |
| 1299 | context before the current message. If nil and the left fringe is displayed, | 1321 | context before the current message. If nil and the left fringe is displayed, |
| 1300 | it doesn't scroll the compilation output window. If there is no left fringe, | 1322 | it doesn't scroll the compilation output window. If there is no left fringe, |
| @@ -1621,6 +1643,7 @@ referred to as "soft word wrap" in other text editors. This is | |||
| 1621 | similar to Refill mode, but more reliable. To turn the word wrap | 1643 | similar to Refill mode, but more reliable. To turn the word wrap |
| 1622 | feature off, set `longlines-auto-wrap' to nil. | 1644 | feature off, set `longlines-auto-wrap' to nil. |
| 1623 | 1645 | ||
| 1646 | +++ | ||
| 1624 | ** The printing package is now part of the Emacs distribution. | 1647 | ** The printing package is now part of the Emacs distribution. |
| 1625 | 1648 | ||
| 1626 | If you enable the printing package by including (require 'printing) in | 1649 | If you enable the printing package by including (require 'printing) in |
| @@ -1713,6 +1736,7 @@ This was actually done in Emacs-21.1, and was not documented. | |||
| 1713 | 1736 | ||
| 1714 | * Changes in Specialized Modes and Packages in Emacs 22.1: | 1737 | * Changes in Specialized Modes and Packages in Emacs 22.1: |
| 1715 | 1738 | ||
| 1739 | --- | ||
| 1716 | ** Makefile mode has submodes for automake, gmake, makepp and BSD make. | 1740 | ** Makefile mode has submodes for automake, gmake, makepp and BSD make. |
| 1717 | 1741 | ||
| 1718 | The former two couldn't be differentiated before, and the latter two | 1742 | The former two couldn't be differentiated before, and the latter two |
| @@ -2401,6 +2425,7 @@ old name remains available as alias, but has been marked obsolete. | |||
| 2401 | +++ | 2425 | +++ |
| 2402 | *** Desktop saving is now a minor mode, `desktop-save-mode'. | 2426 | *** Desktop saving is now a minor mode, `desktop-save-mode'. |
| 2403 | 2427 | ||
| 2428 | +++ | ||
| 2404 | *** The variable `desktop-enable' is obsolete. | 2429 | *** The variable `desktop-enable' is obsolete. |
| 2405 | 2430 | ||
| 2406 | Customize `desktop-save-mode' to enable desktop saving. | 2431 | Customize `desktop-save-mode' to enable desktop saving. |
| @@ -2471,6 +2496,7 @@ currently highlighted regions in an inferior Ediff session. If you answer 'n' | |||
| 2471 | then it reverts to the old behavior and asks the user to select regions for | 2496 | then it reverts to the old behavior and asks the user to select regions for |
| 2472 | comparison. | 2497 | comparison. |
| 2473 | 2498 | ||
| 2499 | +++ | ||
| 2474 | *** The new command `ediff-backup' compares a file with its most recent | 2500 | *** The new command `ediff-backup' compares a file with its most recent |
| 2475 | backup using `ediff'. If you specify the name of a backup file, | 2501 | backup using `ediff'. If you specify the name of a backup file, |
| 2476 | `ediff-backup' compares it with the file of which it is a backup. | 2502 | `ediff-backup' compares it with the file of which it is a backup. |
| @@ -3039,6 +3065,10 @@ list instead of at the beginning. This change actually occurred in | |||
| 3039 | Emacs 21.1, but was not documented then. | 3065 | Emacs 21.1, but was not documented then. |
| 3040 | 3066 | ||
| 3041 | +++ | 3067 | +++ |
| 3068 | *** New function `add-to-ordered-list' is like `add-to-list' but | ||
| 3069 | associates a numeric ordering of each symbol element added to the list. | ||
| 3070 | |||
| 3071 | +++ | ||
| 3042 | *** New function `copy-tree' makes a copy of a tree. | 3072 | *** New function `copy-tree' makes a copy of a tree. |
| 3043 | 3073 | ||
| 3044 | It recursively copyies through both CARs and CDRs. | 3074 | It recursively copyies through both CARs and CDRs. |
| @@ -3362,6 +3392,13 @@ clone to the other. | |||
| 3362 | --- | 3392 | --- |
| 3363 | *** The function `insert-string' is now obsolete. | 3393 | *** The function `insert-string' is now obsolete. |
| 3364 | 3394 | ||
| 3395 | ** Filling changes. | ||
| 3396 | |||
| 3397 | +++ | ||
| 3398 | *** In determining an adaptive fill prefix, Emacs now tries the function in | ||
| 3399 | `adaptive-fill-function' _before_ matching the buffer line against | ||
| 3400 | `adaptive-fill-regexp' rather than _after_ it. | ||
| 3401 | |||
| 3365 | +++ | 3402 | +++ |
| 3366 | ** Atomic change groups. | 3403 | ** Atomic change groups. |
| 3367 | 3404 | ||
| @@ -3503,6 +3540,14 @@ element, if the last match was on a buffer. `set-match-data' | |||
| 3503 | accepts such a list for restoring the match state. | 3540 | accepts such a list for restoring the match state. |
| 3504 | 3541 | ||
| 3505 | +++ | 3542 | +++ |
| 3543 | *** Functions `match-data' and `set-match-data' now have an optional | ||
| 3544 | argument `reseat'. When non-nil, all markers in the match data list | ||
| 3545 | passed to these function will be reseated to point to nowhere, and if | ||
| 3546 | the value of `reseat' is `evaporate', the markers are put onto the | ||
| 3547 | free list. Note that no other references to those markers must exist | ||
| 3548 | if `evaporate' is specified for the `reseat' argument. | ||
| 3549 | |||
| 3550 | +++ | ||
| 3506 | *** The default value of `sentence-end' is now defined using the new | 3551 | *** The default value of `sentence-end' is now defined using the new |
| 3507 | variable `sentence-end-without-space', which contains such characters | 3552 | variable `sentence-end-without-space', which contains such characters |
| 3508 | that end a sentence without following spaces. | 3553 | that end a sentence without following spaces. |
| @@ -4784,10 +4829,8 @@ used to add text properties to mode-line elements. | |||
| 4784 | to display the size of the accessible part of the buffer on the mode | 4829 | to display the size of the accessible part of the buffer on the mode |
| 4785 | line. | 4830 | line. |
| 4786 | 4831 | ||
| 4832 | +++ | ||
| 4787 | *** Mouse-face on mode-line (and header-line) is now supported. | 4833 | *** Mouse-face on mode-line (and header-line) is now supported. |
| 4788 | `mode-line-highlight' is the standard face indicating mouse sensitive | ||
| 4789 | elements on mode-line (and header-line) like `highlight' face on text | ||
| 4790 | areas. | ||
| 4791 | 4834 | ||
| 4792 | ** Menu manipulation changes: | 4835 | ** Menu manipulation changes: |
| 4793 | 4836 | ||
diff --git a/etc/PROBLEMS b/etc/PROBLEMS index 70c36af79d8..3bca366ef26 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS | |||
| @@ -1579,6 +1579,24 @@ global-font-lock-mode RET" or by customizing the variable | |||
| 1579 | 1579 | ||
| 1580 | ** GNU/Linux | 1580 | ** GNU/Linux |
| 1581 | 1581 | ||
| 1582 | *** GNU/Linux: Process output is corrupted. | ||
| 1583 | |||
| 1584 | There is a bug in Linux kernel 2.6.10 PTYs that can cause emacs to | ||
| 1585 | read corrupted process output. | ||
| 1586 | |||
| 1587 | *** GNU/Linux: Remote access to CVS with SSH causes file corruption. | ||
| 1588 | |||
| 1589 | If you access a remote CVS repository via SSH, files may be corrupted | ||
| 1590 | due to bad interaction between CVS, SSH, and libc. | ||
| 1591 | |||
| 1592 | To fix the problem, save the following script into a file, make it | ||
| 1593 | executable, and set CVS_RSH environment variable to the file name of | ||
| 1594 | the script: | ||
| 1595 | |||
| 1596 | #!/bin/bash | ||
| 1597 | exec 2> >(exec cat >&2 2>/dev/null) | ||
| 1598 | exec ssh "$@" | ||
| 1599 | |||
| 1582 | *** GNU/Linux: On Linux-based GNU systems using libc versions 5.4.19 through | 1600 | *** GNU/Linux: On Linux-based GNU systems using libc versions 5.4.19 through |
| 1583 | 5.4.22, Emacs crashes at startup with a segmentation fault. | 1601 | 5.4.22, Emacs crashes at startup with a segmentation fault. |
| 1584 | 1602 | ||
diff --git a/etc/TUTORIAL.cs b/etc/TUTORIAL.cs index 54b77094a37..9a244a5e750 100644 --- a/etc/TUTORIAL.cs +++ b/etc/TUTORIAL.cs | |||
| @@ -489,7 +489,7 @@ vyvoláte příkaz | |||
| 489 | C-x C-f Vyhledání souboru | 489 | C-x C-f Vyhledání souboru |
| 490 | 490 | ||
| 491 | Emacs se vás zeptá na jméno souboru. Jméno souboru, které píšete, se | 491 | Emacs se vás zeptá na jméno souboru. Jméno souboru, které píšete, se |
| 492 | objevuje ve spodním řádku obrazovky, který se v této situaci nazývá | 492 | objevuje ve spodním řádku obrazovky, který se v této situaci nazývá |
| 493 | minibuffer. Pro editaci jména souboru můžete používat obvyklé editační | 493 | minibuffer. Pro editaci jména souboru můžete používat obvyklé editační |
| 494 | příkazy Emacsu. | 494 | příkazy Emacsu. |
| 495 | 495 | ||
diff --git a/etc/TUTORIAL.ro b/etc/TUTORIAL.ro index 459d3726cee..71b2466eca9 100644 --- a/etc/TUTORIAL.ro +++ b/etc/TUTORIAL.ro | |||
| @@ -1,10 +1,8 @@ | |||
| 1 | tutorialului de Emacs. | 1 | Tutorialului de Emacs. A se citi sfârşitul pentru condiţii. |
| 2 | Copyright (c) 1998 Free Software Foundation -*-coding: latin-2;-*- | 2 | Copyright (c) 1998 Free Software Foundation |
| 3 | Traducere din engleză de Tudor Hulubei <tudor@gnu.org>. | 3 | Traducere din engleză de Tudor Hulubei <tudor@gnu.org>. |
| 4 | Mulţumiri Aidei Hulubei <aida@chang.pub.ro> pentru corecturi şi sugestii. | 4 | Mulţumiri Aidei Hulubei <aida@chang.pub.ro> pentru corecturi şi sugestii. |
| 5 | 5 | ||
| 6 | A se citi sfârşitul pentru condiţii. | ||
| 7 | |||
| 8 | Această versiune a fost produsă plecând de la versiunea în limba | 6 | Această versiune a fost produsă plecând de la versiunea în limba |
| 9 | engleză, care este | 7 | engleză, care este |
| 10 | Copyright (c) 1985 Free Software Foundation, Inc. | 8 | Copyright (c) 1985 Free Software Foundation, Inc. |
| @@ -1112,4 +1110,8 @@ spirit. Citiţi fişierul COPYING şi apoi distribuiţi prietenilor copii | |||
| 1112 | ale Emacs-ului. Contribuiţi la eliminarea obstrucţionismului software | 1110 | ale Emacs-ului. Contribuiţi la eliminarea obstrucţionismului software |
| 1113 | folosind, scriind şi distribuind free software! | 1111 | folosind, scriind şi distribuind free software! |
| 1114 | 1112 | ||
| 1113 | ;;; Local Variables: | ||
| 1114 | ;;; coding: iso-latin-2 | ||
| 1115 | ;;; End: | ||
| 1116 | |||
| 1115 | ;;; arch-tag: dcf252cf-bd67-4f8d-a440-1ec4b8dbfd70 | 1117 | ;;; arch-tag: dcf252cf-bd67-4f8d-a440-1ec4b8dbfd70 |
diff --git a/etc/TUTORIAL.sk b/etc/TUTORIAL.sk index 47f104ffa77..67e20f1497c 100644 --- a/etc/TUTORIAL.sk +++ b/etc/TUTORIAL.sk | |||
| @@ -501,7 +501,7 @@ vyvoláte príkaz | |||
| 501 | C-x C-f Vyhľadanie súboru | 501 | C-x C-f Vyhľadanie súboru |
| 502 | 502 | ||
| 503 | Emacs sa Vás opýta na meno súboru. Meno súboru, ktoré píšete, sa | 503 | Emacs sa Vás opýta na meno súboru. Meno súboru, ktoré píšete, sa |
| 504 | objavuje v spodnom riadku obrazovky, ktorý sa v tejto situácii nazýva | 504 | objavuje v spodnom riadku obrazovky, ktorý sa v tejto situácii nazýva |
| 505 | minibuffer. Pre editáciu mena súboru môžete používať obvyklé editačné | 505 | minibuffer. Pre editáciu mena súboru môžete používať obvyklé editačné |
| 506 | príkazy Emacsu. | 506 | príkazy Emacsu. |
| 507 | 507 | ||
diff --git a/etc/TUTORIAL.translators b/etc/TUTORIAL.translators index d0c09e5bc7b..671c52e0b1e 100644 --- a/etc/TUTORIAL.translators +++ b/etc/TUTORIAL.translators | |||
| @@ -1,86 +1,86 @@ | |||
| 1 | This file contains the list of translators and maintainers of the | 1 | This file contains the list of translators and maintainers of the |
| 2 | tutorial. | 2 | tutorial. |
| 3 | 3 | ||
| 4 | * TUTORIAL.bg: | 4 | * TUTORIAL.bg: |
| 5 | Author: Ognyan Kulev <ogi@fmi.uni-sofia.bg> | 5 | Author: Ognyan Kulev <ogi@fmi.uni-sofia.bg> |
| 6 | Maintainer: Ognyan Kulev <ogi@fmi.uni-sofia.bg> | 6 | Maintainer: Ognyan Kulev <ogi@fmi.uni-sofia.bg> |
| 7 | 7 | ||
| 8 | * TUTORIAL.cn: | 8 | * TUTORIAL.cn: |
| 9 | Author: Chao-Hong Liu <chliu@gnu.org> | 9 | Author: Chao-Hong Liu <chliu@gnu.org> |
| 10 | Maintainer: Chao-Hong Liu <chliu@gnu.org> | 10 | Maintainer: Chao-Hong Liu <chliu@gnu.org> |
| 11 | 11 | ||
| 12 | * TUTORIAL.cs: | 12 | * TUTORIAL.cs: |
| 13 | Author: Milan Zamazal <pdm@zamazal.org> | 13 | Author: Milan Zamazal <pdm@zamazal.org> |
| 14 | Pavel JanĂk <Pavel@Janik.cz> | 14 | Pavel JanĂk <Pavel@Janik.cz> |
| 15 | Maintainer: Milan Zamazal <pdm@zamazal.org> | 15 | Maintainer: Milan Zamazal <pdm@zamazal.org> |
| 16 | Pavel JanĂk <Pavel@Janik.cz> | 16 | Pavel JanĂk <Pavel@Janik.cz> |
| 17 | 17 | ||
| 18 | * TUTORIAL.de: | 18 | * TUTORIAL.de: |
| 19 | Author: Werner Lemberg <wl@gnu.org> | 19 | Author: Werner Lemberg <wl@gnu.org> |
| 20 | Maintainer: Werner Lemberg <wl@gnu.org> | 20 | Maintainer: Werner Lemberg <wl@gnu.org> |
| 21 | 21 | ||
| 22 | * TUTORIAL.es: | 22 | * TUTORIAL.es: |
| 23 | Author: Rafael SepĂşlveda <drs@gnulinux.org.mx> | 23 | Author: Rafael SepĂşlveda <drs@gnulinux.org.mx> |
| 24 | Maintainer: Rafael SepĂşlveda <drs@gnulinux.org.mx> | 24 | Maintainer: Rafael SepĂşlveda <drs@gnulinux.org.mx> |
| 25 | 25 | ||
| 26 | * TUTORIAL.fr: | 26 | * TUTORIAL.fr: |
| 27 | Author: Ăric Jacoboni <jaco@teaser.fr> | 27 | Author: Ăric Jacoboni <jaco@teaser.fr> |
| 28 | Maintainer: Ăric Jacoboni <jaco@teaser.fr> | 28 | Maintainer: Ăric Jacoboni <jaco@teaser.fr> |
| 29 | 29 | ||
| 30 | * TUTORIAL.it: | 30 | * TUTORIAL.it: |
| 31 | Author: Alfredo Finelli <alfredofnl@tiscali.it> | 31 | Author: Alfredo Finelli <alfredofnl@tiscali.it> |
| 32 | Italian GNU Translation Group <tp@lists.linux.it> | 32 | Italian GNU Translation Group <tp@lists.linux.it> |
| 33 | Maintainer: Alfredo Finelli <alfredofnl@tiscali.it> | 33 | Maintainer: Alfredo Finelli <alfredofnl@tiscali.it> |
| 34 | Italian GNU Translation Group <tp@lists.linux.it> | 34 | Italian GNU Translation Group <tp@lists.linux.it> |
| 35 | 35 | ||
| 36 | * TUTORIAL.ja: | 36 | * TUTORIAL.ja: |
| 37 | Author: Kenichi Handa <handa@m17n.org> | 37 | Author: Kenichi Handa <handa@m17n.org> |
| 38 | Maintainer: Kenichi Handa <handa@m17n.org> | 38 | Maintainer: Kenichi Handa <handa@m17n.org> |
| 39 | 39 | ||
| 40 | * TUTORIAL.ko: | 40 | * TUTORIAL.ko: |
| 41 | Author: Koaunghi Un <koaunghi@ling.cnu.ac.kr> | 41 | Author: Koaunghi Un <koaunghi@ling.cnu.ac.kr> |
| 42 | Maintainer: Maintainer needed. | 42 | Maintainer: Maintainer needed. |
| 43 | 43 | ||
| 44 | * TUTORIAL.nl: | 44 | * TUTORIAL.nl: |
| 45 | Author: Pieter Schoenmakers <tiggr@tiggr.net> | 45 | Author: Pieter Schoenmakers <tiggr@tiggr.net> |
| 46 | Maintainer: Pieter Schoenmakers <tiggr@tiggr.net> | 46 | Maintainer: Pieter Schoenmakers <tiggr@tiggr.net> |
| 47 | 47 | ||
| 48 | * TUTORIAL.pl: | 48 | * TUTORIAL.pl: |
| 49 | Author: BeatÄ WierzchoĹowskÄ <beataw@orient.uw.edu.pl> | 49 | Author: BeatÄ WierzchoĹowskÄ <beataw@orient.uw.edu.pl> |
| 50 | Janusz S. Bien <jsbien@mail.uw.edu.pl> | 50 | Janusz S. Bien <jsbien@mail.uw.edu.pl> |
| 51 | Maintainer: BeatÄ WierzchoĹowskÄ <beataw@orient.uw.edu.pl> | 51 | Maintainer: BeatÄ WierzchoĹowskÄ <beataw@orient.uw.edu.pl> |
| 52 | Janusz S. Bien <jsbien@mail.uw.edu.pl> | 52 | Janusz S. Bien <jsbien@mail.uw.edu.pl> |
| 53 | 53 | ||
| 54 | * TUTORIAL.pt_BR: | 54 | * TUTORIAL.pt_BR: |
| 55 | Author: Marcelo Toledo <marcelo@gnu.org> | 55 | Author: Marcelo Toledo <marcelo@gnu.org> |
| 56 | Maintainer: Marcelo Toledo <marcelo@gnu.org> | 56 | Maintainer: Marcelo Toledo <marcelo@gnu.org> |
| 57 | 57 | ||
| 58 | * TUTORIAL.ro: | 58 | * TUTORIAL.ro: |
| 59 | Author: Tudor Hulubei <tudor@gnu.org> | 59 | Author: Tudor Hulubei <tudor@gnu.org> |
| 60 | Maintainer: Maintainer needed. | 60 | Maintainer: Maintainer needed. |
| 61 | 61 | ||
| 62 | * TUTORIAL.ru: | 62 | * TUTORIAL.ru: |
| 63 | Author: Alex Ott <ottalex@narod.ru> | 63 | Author: Alex Ott <ottalex@narod.ru> |
| 64 | Maintainer: Alex Ott <ottalex@narod.ru> | 64 | Maintainer: Alex Ott <ottalex@narod.ru> |
| 65 | 65 | ||
| 66 | * TUTORIAL.sk: | 66 | * TUTORIAL.sk: |
| 67 | Author: Miroslav VaĹĄko <vasko@debian.cz> | 67 | Author: Miroslav VaĹĄko <vasko@debian.cz> |
| 68 | Pavel JanĂk <Pavel@Janik.cz> | 68 | Pavel JanĂk <Pavel@Janik.cz> |
| 69 | Maintainer: Pavel JanĂk <Pavel@Janik.cz> | 69 | Maintainer: Pavel JanĂk <Pavel@Janik.cz> |
| 70 | 70 | ||
| 71 | * TUTORIAL.sl: | 71 | * TUTORIAL.sl: |
| 72 | Author: PrimoĹž Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si> | 72 | Author: PrimoĹž Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si> |
| 73 | Maintainer: PrimoĹž Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si> | 73 | Maintainer: PrimoĹž Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si> |
| 74 | 74 | ||
| 75 | * TUTORIAL.sv: | 75 | * TUTORIAL.sv: |
| 76 | Author: Mats Lidell <matsl@contactor.se> | 76 | Author: Mats Lidell <matsl@contactor.se> |
| 77 | Maintainer: Mats Lidell <matsl@contactor.se> | 77 | Maintainer: Mats Lidell <matsl@contactor.se> |
| 78 | 78 | ||
| 79 | * TUTORIAL.th: | 79 | * TUTORIAL.th: |
| 80 | Author: Virach Sornlertlamvanich <virach@nectec.or.th> | 80 | Author: Virach Sornlertlamvanich <virach@nectec.or.th> |
| 81 | Maintainer: Virach Sornlertlamvanich <virach@nectec.or.th> | 81 | Maintainer: Virach Sornlertlamvanich <virach@nectec.or.th> |
| 82 | 82 | ||
| 83 | * TUTORIAL.zh: | 83 | * TUTORIAL.zh: |
| 84 | Author: Chao-Hong Liu <chliu@gnu.org> | 84 | Author: Chao-Hong Liu <chliu@gnu.org> |
| 85 | Maintainer: Chao-Hong Liu <chliu@gnu.org> | 85 | Maintainer: Chao-Hong Liu <chliu@gnu.org> |
| 86 | 86 | ||
diff --git a/etc/emacs-buffer.gdb b/etc/emacs-buffer.gdb index cd0bf0dd59d..c4f8eef481d 100644 --- a/etc/emacs-buffer.gdb +++ b/etc/emacs-buffer.gdb | |||
| @@ -116,13 +116,13 @@ define ybuffer-list | |||
| 116 | 116 | ||
| 117 | if $buf->filename != Qnil | 117 | if $buf->filename != Qnil |
| 118 | ygetptr $buf->filename | 118 | ygetptr $buf->filename |
| 119 | set $filename = ((struct Lisp_String *) $ptr)->data | 119 | printf "%2d %c %9d %-20s %-10s %s\n", \ |
| 120 | $i, $modp, ($buf->text->z_byte - 1), $name, $mode, \ | ||
| 121 | ((struct Lisp_String *) $ptr)->data | ||
| 120 | else | 122 | else |
| 121 | set $filename = ' ' | 123 | printf "%2d %c %9d %-20s %-10s\n", \ |
| 124 | $i, $modp, ($buf->text->z_byte - 1), $name, $mode | ||
| 122 | end | 125 | end |
| 123 | |||
| 124 | printf "%2d %c %9d %-20s %-10s %s\n", \ | ||
| 125 | $i, $modp, ($buf->text->z_byte - 1), $name, $mode, $filename | ||
| 126 | end | 126 | end |
| 127 | 127 | ||
| 128 | set $i++ | 128 | set $i++ |