]> git.eshelyaron.com Git - emacs.git/commitdiff
(posn-col-row): Make the `default-value' use explicit.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 22 Nov 2007 20:14:13 +0000 (20:14 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 22 Nov 2007 20:14:13 +0000 (20:14 +0000)
lisp/ChangeLog
lisp/subr.el

index cfda8a8f1676a2e2c18ae013e044e2f854efd84e..452a9847f6c8c616426359076a2956dda67f8f6b 100644 (file)
@@ -1,5 +1,7 @@
 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * subr.el (posn-col-row): Make the `default-value' use explicit.
+
        * window.el (balance-windows): Remove unused var `counter'.
        (bw-balance-sub): Remove unused var `lastchild'.
        (split-window-vertically): Remove unused var `switch'.
index de36d0b90355ac281358b42032aaff20a44bb95d..59be9164b60b6f55e80873d290e660f61ae7c040 100644 (file)
@@ -860,7 +860,8 @@ and `event-end' functions."
             (x (/ (car pair) (frame-char-width frame)))
             (y (/ (cdr pair) (+ (frame-char-height frame)
                                 (or (frame-parameter frame 'line-spacing)
-                                    default-line-spacing
+                                     ;; FIXME: Why the `default'?
+                                    (default-value 'line-spacing)
                                     0)))))
        (cons x y))))))