]> git.eshelyaron.com Git - emacs.git/commitdiff
(dabbrev--substitute-expansion): Use just ABBREV, not OLD, in previous change.
authorRichard M. Stallman <rms@gnu.org>
Sat, 27 Jul 1996 04:09:13 +0000 (04:09 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 27 Jul 1996 04:09:13 +0000 (04:09 +0000)
lisp/dabbrev.el

index f4250db1a77b4c450e43e02de0577e105c448cff..ed17557170f39369a6cf3b02ebdd740ecd2d3804 100644 (file)
@@ -752,12 +752,10 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]."
     ;; matches the start of the expansion,
     ;; copy the expansion's case
     ;; instead of downcasing all the rest.
-    (if (and (string= (or old abbrev)
-                     (substring expansion 0 (length (or old abbrev))))
-            (not (string= (or old abbrev)
-                          (downcase (or old abbrev))))
-            (not (string= (or old abbrev)
-                          (upcase (or old abbrev)))))
+    (if (and (string= abbrev
+                     (substring expansion 0 (length abbrev)))
+            (not (string= abbrev (downcase abbrev)))
+            (not (string= abbrev (upcase abbrev))))
        (setq use-case-replace nil)
       (if use-case-replace
          (setq expansion (downcase expansion))))