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

Lines Matching defs:odd

415 (defcustom org-odd-levels-only nil
416 "Non-nil means, skip even levels and only use odd levels for the outline.
425 #+STARTUP: odd
3132 ("odd" org-odd-levels-only t)
3133 ("oddeven" org-odd-levels-only nil)
3970 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
4560 "Rectify a level change under the influence of `org-odd-levels-only'
4563 even level numbers will become the next higher odd number."
4564 (if org-odd-levels-only
4643 (defun org-convert-to-odd-levels ()
4644 "Convert an org-mode file with all levels allowed to one with odd levels.
4648 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
4649 (let ((org-odd-levels-only nil) n)
4660 "Convert an org-mode file with only odd levels to one with odd and even levels.
4669 (error "Not all levels are odd in this file. Conversion not possible."))
4670 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
4671 (let ((org-odd-levels-only nil) n)
4681 "Make N odd if required."
4682 (if org-odd-levels-only (1+ (/ n 2)) n))
4829 (org-odd-levels-only nil)
5483 (tr-org-odd-levels-only org-odd-levels-only)
5532 (org-odd-levels-only
5533 (if (local-variable-p 'org-odd-levels-only)
5534 org-odd-levels-only
5535 tr-org-odd-levels-only)))
16984 (odd org-odd-levels-only)
17015 (org-set-local 'org-odd-levels-only odd)
17286 (if org-odd-levels-only "odd" "oddeven")
17396 (odd org-odd-levels-only)
17474 (org-odd-levels-only odd))
19178 ["Convert to odd levels" org-convert-to-odd-levels t]
19179 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])