emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs etc/NEWS lisp/ChangeLog lisp/minibuffer.e...


From: Stefan Monnier
Subject: [Emacs-diffs] emacs etc/NEWS lisp/ChangeLog lisp/minibuffer.e...
Date: Mon, 26 Oct 2009 03:39:20 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Stefan Monnier <monnier>        09/10/26 03:39:19

Modified files:
        etc            : NEWS 
        lisp           : ChangeLog minibuffer.el subr.el 
        src            : minibuf.c 

Log message:
        (all-completions): Declare the 4th arg obsolete.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/etc/NEWS?cvsroot=emacs&r1=1.2107&r2=1.2108
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16509&r2=1.16510
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/minibuffer.el?cvsroot=emacs&r1=1.91&r2=1.92
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/subr.el?cvsroot=emacs&r1=1.661&r2=1.662
http://cvs.savannah.gnu.org/viewcvs/emacs/src/minibuf.c?cvsroot=emacs&r1=1.363&r2=1.364

Patches:
Index: etc/NEWS
===================================================================
RCS file: /sources/emacs/emacs/etc/NEWS,v
retrieving revision 1.2107
retrieving revision 1.2108
diff -u -b -r1.2107 -r1.2108
--- etc/NEWS    23 Oct 2009 18:39:48 -0000      1.2107
+++ etc/NEWS    26 Oct 2009 03:39:15 -0000      1.2108
@@ -256,6 +256,8 @@
 
 * Lisp changes in Emacs 23.2
 
+** The 4th arg to all-completions (aka hide-spaces) is declared obsolete.
+
 ** read-file-name-predicate is obsolete.  It was used to pass the predicate
 to read-file-name-internal because read-file-name-internal abused its `pred'
 argument to pass the current directory, but this hack is not needed

Index: lisp/ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16509
retrieving revision 1.16510
diff -u -b -r1.16509 -r1.16510
--- lisp/ChangeLog      25 Oct 2009 20:38:06 -0000      1.16509
+++ lisp/ChangeLog      26 Oct 2009 03:39:16 -0000      1.16510
@@ -1,3 +1,7 @@
+2009-10-26  Stefan Monnier  <address@hidden>
+
+       * subr.el (all-completions): Declare the 4th arg obsolete.
+
 2009-10-25  Stefan Monnier  <address@hidden>
 
        * pcomplete.el (pcomplete-unquote-argument-function): New var.
@@ -10,6 +14,36 @@
        * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
        we're inside a dedicated or minibuffer window.
 
+2009-10-25  Stefan Monnier  <address@hidden>
+
+       * cedet/semantic/fw.el (semantic-alias-obsolete)
+       (semantic-varalias-obsolete): Make the `when' arg mandatory.
+       (define-mode-overload-implementation):
+       * cedet/semantic/decorate/mode.el 
(semantic-decorate-pending-decoration-hooks):
+       * cedet/semantic/wisent.el (wisent-lex-make-token-table):
+       * cedet/semantic/util.el (semantic-file-token-stream)
+       (semantic-something-to-stream):
+       * cedet/semantic/tag.el (semantic-tag-make-assoc-list)
+       (semantic-expand-nonterminal):
+       * cedet/semantic/tag-file.el (semantic-find-nonterminal)
+       (semantic-find-dependency, semantic-find-nonterminal)
+       (semantic-find-dependency):
+       * cedet/semantic/lex.el (semantic-flex-start, semantic-flex-end)
+       (semantic-flex-text, semantic-flex-make-keyword-table)
+       (semantic-flex-keyword-p, semantic-flex-keyword-put)
+       (semantic-flex-keyword-get, semantic-flex-map-keywords)
+       (semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
+       * cedet/semantic/java.el (semantic-java-prototype-nonterminal):
+       * cedet/semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
+       (semantic-after-idle-scheduler-reparse-hooks):
+       * cedet/semantic/edit.el 
(semantic-edits-incremental-reparse-failed-hooks):
+       * cedet/semantic/db-mode.el (semanticdb-mode-hooks):
+       * cedet/semantic.el (semantic-toplevel-bovine-table)
+       (semantic-toplevel-bovine-cache)
+       (semantic-before-toplevel-bovination-hook, semantic-init-hooks)
+       (semantic-init-mode-hooks, semantic-init-db-hooks)
+       (semantic-bovination-working-type): Provide the `when' arg.
+
 2009-10-24  Karl Fogel  <address@hidden>
 
        * bookmark.el: Update documentation, especially documentation

Index: lisp/minibuffer.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/minibuffer.el,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -b -r1.91 -r1.92
--- lisp/minibuffer.el  24 Oct 2009 00:46:23 -0000      1.91
+++ lisp/minibuffer.el  26 Oct 2009 03:39:19 -0000      1.92
@@ -40,9 +40,17 @@
 ;;   corresponding to the displayed completions because we only
 ;;   provide the start info but not the end info in
 ;;   completion-base-position.
+;; - quoting is problematic.  E.g. the double-dollar quoting used in
+;;   substitie-in-file-name (and hence read-file-name-internal) bumps
+;;   into various bugs:
 ;; - choose-completion doesn't know how to quote the text it inserts.
 ;;   E.g. it fails to double the dollars in file-name completion, or
 ;;   to backslash-escape spaces and other chars in comint completion.
+;;   - when completing ~/tmp/fo$$o, the highligting in *Completions*
+;;     is off by one position.
+;;   - all code like PCM which relies on all-completions to match
+;;     its argument gets confused because all-completions returns unquoted
+;;     texts (as desired for *Completions* output).
 ;; - C-x C-f ~/*/sr ? should not list "~/./src".
 ;; - minibuffer-force-complete completes ~/src/emacs/t<!>/lisp/minibuffer.el
 ;;   to ~/src/emacs/trunk/ and throws away lisp/minibuffer.el.
@@ -72,8 +80,6 @@
 ;; - add support for ** to pcm.
 ;; - Add vc-file-name-completion-table to read-file-name-internal.
 ;; - A feature like completing-help.el.
-;; - make lisp/complete.el obsolete.
-;; - Make the `hide-spaces' arg of all-completions obsolete?
 
 ;;; Code:
 

Index: lisp/subr.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/subr.el,v
retrieving revision 1.661
retrieving revision 1.662
diff -u -b -r1.661 -r1.662
--- lisp/subr.el        20 Oct 2009 01:29:22 -0000      1.661
+++ lisp/subr.el        26 Oct 2009 03:39:19 -0000      1.662
@@ -1038,6 +1038,8 @@
               "explicitly check for a frame-parameter instead." "22.2")
 (make-obsolete 'interactive-p 'called-interactively-p "23.2")
 (set-advertised-calling-convention 'called-interactively-p '(kind))
+(set-advertised-calling-convention
+ 'all-completions '(string collection &optional predicate))
 
 ;;;; Obsolescence declarations for variables, and aliases.
 
@@ -1885,11 +1887,13 @@
             ;; Turn a meta-character into a character with the 0200 bit set.
             (setq code (logior (logand translated (lognot ?\M-\^@)) 128)
                   done t))
-           ((and (<= ?0 translated) (< translated (+ ?0 (min 10 
read-quoted-char-radix))))
+           ((and (<= ?0 translated)
+                  (< translated (+ ?0 (min 10 read-quoted-char-radix))))
             (setq code (+ (* code read-quoted-char-radix) (- translated ?0)))
             (and prompt (setq prompt (message "%s %c" prompt translated))))
            ((and (<= ?a (downcase translated))
-                 (< (downcase translated) (+ ?a -10 (min 36 
read-quoted-char-radix))))
+                 (< (downcase translated)
+                     (+ ?a -10 (min 36 read-quoted-char-radix))))
             (setq code (+ (* code read-quoted-char-radix)
                           (+ 10 (- (downcase translated) ?a))))
             (and prompt (setq prompt (message "%s %c" prompt translated))))

Index: src/minibuf.c
===================================================================
RCS file: /sources/emacs/emacs/src/minibuf.c,v
retrieving revision 1.363
retrieving revision 1.364
diff -u -b -r1.363 -r1.364
--- src/minibuf.c       19 Oct 2009 04:27:17 -0000      1.363
+++ src/minibuf.c       26 Oct 2009 03:39:19 -0000      1.364
@@ -1561,9 +1561,9 @@
 Additionally to this predicate, `completion-regexp-list'
 is used to further constrain the set of candidates.
 
-If the optional fourth argument HIDE-SPACES is non-nil,
-strings in COLLECTION that start with a space
-are ignored unless STRING itself starts with a space.  */)
+An osbolete optional fourth argument HIDE-SPACES is still accepted for
+backward compatiblity.  If non-nil, strings in COLLECTION that start
+with a space are ignored unless STRING itself starts with a space.  */)
      (string, collection, predicate, hide_spaces)
      Lisp_Object string, collection, predicate, hide_spaces;
 {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]