diff options
| author | Stefan Monnier | 2004-03-08 01:10:23 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-03-08 01:10:23 +0000 |
| commit | 5895f7fd1a20b2197951395a3c33d4e90ca7f992 (patch) | |
| tree | 31384ab5fdeb2db6495bed05705d65ee78af91bd | |
| parent | e4b7444db4a69af0bdb4230aa42f1127beafc23b (diff) | |
| download | emacs-5895f7fd1a20b2197951395a3c33d4e90ca7f992.tar.gz emacs-5895f7fd1a20b2197951395a3c33d4e90ca7f992.zip | |
(fill) <defgroup>: Move to fill.el.
| -rw-r--r-- | lisp/ChangeLog | 28 | ||||
| -rw-r--r-- | lisp/cus-edit.el | 7 |
2 files changed, 26 insertions, 9 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a7aedbbe57e..672ca187c09 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,9 +1,18 @@ | |||
| 1 | 2004-03-07 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * cus-edit.el (fill) <defgroup>: Move to fill.el. | ||
| 4 | |||
| 5 | * textmodes/fill.el (fill) <defgroup>: Move from cus-edit.el. | ||
| 6 | (enable-kinsoku): Make it a defcustom. | ||
| 7 | (fill-comment-paragraph): Don't rely on fill-prefix to bound the | ||
| 8 | paragraph to same-comment-start-marker. | ||
| 9 | |||
| 1 | 2004-03-07 Dave Love <fx@gnu.org> | 10 | 2004-03-07 Dave Love <fx@gnu.org> |
| 2 | 11 | ||
| 3 | * net/browse-url.el (rfc2368-parse-mailto-url): Autoload. | 12 | * net/browse-url.el (rfc2368-parse-mailto-url): Autoload. |
| 4 | (browse-url-mail): Use it. | 13 | (browse-url-mail): Use it. |
| 5 | 14 | ||
| 6 | * mail/rfc2368.el (rfc2368-unhexify-char): Deleted. | 15 | * mail/rfc2368.el (rfc2368-unhexify-char): Delete. |
| 7 | (rfc2368-unhexify-string): Use replace-regexp-in-string. | 16 | (rfc2368-unhexify-string): Use replace-regexp-in-string. |
| 8 | 17 | ||
| 9 | 2004-03-07 Francis J. Wright <F.J.Wright@qmul.ac.uk> | 18 | 2004-03-07 Francis J. Wright <F.J.Wright@qmul.ac.uk> |
| @@ -21,14 +30,17 @@ | |||
| 21 | * gdb-ui.el (gdb-overlay-arrow-position): Add defvar. | 30 | * gdb-ui.el (gdb-overlay-arrow-position): Add defvar. |
| 22 | (gdb-reset): Reset gdb-overlay-arrow-position marker and remove it | 31 | (gdb-reset): Reset gdb-overlay-arrow-position marker and remove it |
| 23 | from overlay-arrow-variable-list. | 32 | from overlay-arrow-variable-list. |
| 24 | (gdb-assembler-mode): Use add-to-list for | 33 | (gdb-assembler-mode): Use add-to-list for gdb-overlay-arrow-position. |
| 25 | gdb-overlay-arrow-position. | ||
| 26 | 34 | ||
| 27 | 2004-03-06 Nick Roberts <nick@nick.uklinux.net> | 35 | 2004-03-06 Nick Roberts <nick@nick.uklinux.net> |
| 28 | 36 | ||
| 29 | * gdb-ui.el (gdb-assembler-mode, gdb-assembler-custom): Set up | 37 | * gdb-ui.el (gdb-assembler-mode, gdb-assembler-custom): Set up |
| 30 | overlay arrow string properly for the assembler buffer. | 38 | overlay arrow string properly for the assembler buffer. |
| 31 | 39 | ||
| 40 | 2004-03-05 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 41 | |||
| 42 | * mail/sendmail.el (mail-mode): Fix last change. | ||
| 43 | |||
| 32 | 2004-03-05 Nick Roberts <nick@nick.uklinux.net> | 44 | 2004-03-05 Nick Roberts <nick@nick.uklinux.net> |
| 33 | 45 | ||
| 34 | * gdb-ui.el (gdb-assembler-mode): Create a second overlay arrow | 46 | * gdb-ui.el (gdb-assembler-mode): Create a second overlay arrow |
| @@ -38,6 +50,11 @@ | |||
| 38 | 50 | ||
| 39 | 2004-03-04 Stefan Monnier <monnier@iro.umontreal.ca> | 51 | 2004-03-04 Stefan Monnier <monnier@iro.umontreal.ca> |
| 40 | 52 | ||
| 53 | * progmodes/sh-script.el (sh-font-lock-paren): Add @ in case patterns. | ||
| 54 | |||
| 55 | * pcvs-info.el (cvs-fileinfo->backup-file): Use a more constraining | ||
| 56 | regexp to distinguish .#ChangeLog.9.1.400 and .#ChangeLog.1.400. | ||
| 57 | |||
| 41 | * mail/sendmail.el (mail-mode): Set comment-start-skip. | 58 | * mail/sendmail.el (mail-mode): Set comment-start-skip. |
| 42 | 59 | ||
| 43 | * newcomment.el (uncomment-region): Allow non-terminated comment. | 60 | * newcomment.el (uncomment-region): Allow non-terminated comment. |
| @@ -98,6 +115,11 @@ | |||
| 98 | 115 | ||
| 99 | 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca> | 116 | 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca> |
| 100 | 117 | ||
| 118 | * Makefile.in (setwins, setwins_almost): Skip .arch-ids and other | ||
| 119 | hidden files/directories. | ||
| 120 | |||
| 121 | 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 122 | |||
| 101 | * textmodes/fill.el (fill-paragraph): Don't check comment-start-skip, | 123 | * textmodes/fill.el (fill-paragraph): Don't check comment-start-skip, |
| 102 | only comment-start (in case the mode hasn't set it). | 124 | only comment-start (in case the mode hasn't set it). |
| 103 | 125 | ||
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index fc5e7ecb8af..04570b1512e 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cus-edit.el --- tools for customizing Emacs and Lisp packages | 1 | ;;; cus-edit.el --- tools for customizing Emacs and Lisp packages |
| 2 | ;; | 2 | ;; |
| 3 | ;; Copyright (C) 1996,97,1999,2000,01,02,2003 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1996,97,1999,2000,01,02,03,2004 Free Software Foundation, Inc. |
| 4 | ;; | 4 | ;; |
| 5 | ;; Author: Per Abrahamsen <abraham@dina.kvl.dk> | 5 | ;; Author: Per Abrahamsen <abraham@dina.kvl.dk> |
| 6 | ;; Maintainer: FSF | 6 | ;; Maintainer: FSF |
| @@ -286,11 +286,6 @@ | |||
| 286 | "Content of the modeline." | 286 | "Content of the modeline." |
| 287 | :group 'environment) | 287 | :group 'environment) |
| 288 | 288 | ||
| 289 | (defgroup fill nil | ||
| 290 | "Indenting and filling text." | ||
| 291 | :link '(custom-manual "(emacs)Filling Text") | ||
| 292 | :group 'editing) | ||
| 293 | |||
| 294 | (defgroup editing-basics nil | 289 | (defgroup editing-basics nil |
| 295 | "Most basic editing facilities." | 290 | "Most basic editing facilities." |
| 296 | :group 'editing) | 291 | :group 'editing) |