• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/emacs-93/emacs/lisp/

Lines Matching defs:odd

146 (defmacro ediff-odd-p (arg)
1227 (defface ediff-odd-diff-A
1240 "Face for highlighting odd-numbered non-current differences in buffer A."
1244 (defvar ediff-odd-diff-face-A 'ediff-odd-diff-A
1245 "Face for highlighting odd-numbered non-current differences in buffer A.
1247 widget to customize the actual face object `ediff-odd-diff-A'
1249 (ediff-hide-face ediff-odd-diff-face-A)
1252 (defface ediff-odd-diff-B
1265 "Face for highlighting odd-numbered non-current differences in buffer B."
1269 (defvar ediff-odd-diff-face-B 'ediff-odd-diff-B
1270 "Face for highlighting odd-numbered non-current differences in buffer B.
1272 widget to customize the actual face object `ediff-odd-diff-B'
1274 (ediff-hide-face ediff-odd-diff-face-B)
1276 (defface ediff-odd-diff-C
1289 "Face for highlighting odd-numbered non-current differences in buffer C."
1293 (defvar ediff-odd-diff-face-C 'ediff-odd-diff-C
1294 "Face for highlighting odd-numbered non-current differences in buffer C.
1296 widget to customize the actual face object `ediff-odd-diff-C'
1298 (ediff-hide-face ediff-odd-diff-face-C)
1300 (defface ediff-odd-diff-Ancestor
1310 "Face for highlighting odd-numbered non-current differences in the ancestor buffer."
1314 (defvar ediff-odd-diff-face-Ancestor 'ediff-odd-diff-Ancestor
1315 "Face for highlighting odd-numbered non-current differences in buffer Ancestor.
1317 widget to customize the actual face object `ediff-odd-diff-Ancestor'
1319 (ediff-hide-face ediff-odd-diff-face-Ancestor)
1321 ;; Association between buffer types and odd-diff-face symbols
1322 (defconst ediff-odd-diff-face-alist
1323 '((A . ediff-odd-diff-A)
1324 (B . ediff-odd-diff-B)
1325 (C . ediff-odd-diff-C)
1326 (Ancestor . ediff-odd-diff-Ancestor)))
1505 ;; This is why even face is used when dif-num is odd.
1507 buf-type (if (ediff-odd-p dif-num)
1509 ediff-odd-diff-face-alist)