view admin/notes/lel-TODO @ 87315:34b619baa980

Replace all instances of string-to-int with string-to-number, insert-string with insert, and read-input with read-string. (top-level): No need to require imenu, reporter, dinotrace, vc, font-lock when compiling. Always require compile. Relegate remaining compatibility cruft to XEmacs. Don't require font-lock. (verilog-version): Remove superfluous concat. (dinotrace-unannotate-all, zmacs-activate-region) (customize-apropos): No need to define. (verilog-regexp-opt): On Emacs, just make it an alias for regexp-opt. (verilog-font-lock-keywords, verilog-font-lock-keywords-1) (verilog-font-lock-keywords-2, verilog-font-lock-keywords-3) (verilog-startup-message-displayed): These are variables, not constants. (verilog-batch-execute-func, verilog-auto-inst) (verilog-auto-inst-param): Use mapc rather than mapcar. (sigs-in, sigs-inout, sigs-out): Define for compiler rather than actually defining. (verilog-modi-get-decls, verilog-modi-get-sub-decls) (verilog-modi-get-outputs, verilog-modi-get-inouts) (verilog-modi-get-inputs, verilog-modi-get-wires) (verilog-modi-get-regs, verilog-modi-get-assigns) (verilog-modi-get-consts, verilog-modi-get-gparams) (verilog-modi-get-sub-outputs, verilog-modi-get-sub-inouts) (verilog-modi-get-sub-inputs): Move inline functions earlier in the file. (sigs-in, sigs-out): Don't declare multiple times. (got-sig, got-rvalue, uses-delayed): Define for compiler with just `defvar'. (verilog-auto): Call dinotrace-unannotate-all only if bound. (verilog-module-inside-filename-p): No need to wrap fboundp test in condition-case. (reporter-submit-bug-report): Autoload it. (verilog-mark-defun): Call zmacs-activate-region only if bound. (verilog-font-customize): Call customize-apropos only if bound. (verilog-getopt-flags, verilog-auto-reeval-locals): Use make-local-variable rather than make-variable-buffer-local. (verilog-company, verilog-project, verilog-modi-cache-list): Move make-variable-buffer-local calls to top-level. (font-lock-defaults-alist): Don't define it. (verilog-need-fld): Remove. (verilog-font-lock-init): Don't set font-lock-defaults-alist. (verilog-mode): Only call make-local-hook on XEmacs. Set font-lock-defaults rather than using verilog-font-lock-init.
author Glenn Morris <rgm@gnu.org>
date Tue, 18 Dec 2007 02:32:29 +0000
parents a9452c811f01
children c8517e70fcc3
line wrap: on
line source

Some lisp/emacs-lisp/ Features and Where They Are Documented
Copyright (C) 2007 Free Software Foundation, Inc.


* Status Key
  -      -- as yet unknown
  n/a    -- not applicable (internal, uninteresting, etc)
  todo   -- not documented but should be
  NODE   -- documented in or under info node NODE


* Features
  advice                  (elisp) Advising Functions
  advice-preload          n/a
  assoc                   -
  authors                 -
  autoload                (elisp) Autoload
  avl-tree                -
  backquote               n/a
  benchmark               n/a
  bindat                  (elisp) Byte Packing
  byte-compile            (elisp) Byte Compilation
  byte-opt                -
  bytecomp                (elisp) Compilation Functions
  checkdoc                (elisp) Documentation Tips
  cl                      (cl)
  cl-19                   n/a
  cl-compat               n/a
  cl-specs                n/a
  copyright               -
  crm                     -
  cust-print              (elisp) Printing in Edebug
  debug                   (elisp) Debugger
  derived                 (elisp) Derived Modes
  disass                  (elisp) Disassembly
  easy-mmode              (elisp) Defining Minor Modes
  easymenu                -
  edebug                  (elisp) Edebug
  eldoc                   -
  elint                   -
  elp                     n/a
  ewoc                    (elisp) Separated Rendering
  find-func               -
  find-gc                 -
  generic                 (elisp) Generic Modes
  gulp                    n/a
  helper                  -
  levents                 -
  lisp-float-type         -
  lisp-mnt                -
  lisp-mode               n/a
  lmenu                   -
  lselect                 -
  lucid                   -
  macroexp                (elisp) Expansion
  pp                      (emacs) Program Indent
  re-builder              -
  regexp-opt              (elisp) Regexp Functions
  regi                    -
  ring                    (elisp) Rings
  rx                      -
  shadow                  -
  sregex                  -
  syntax                  (elisp) Position Parse
  testcover               -
  timer                   (elisp) Timers
  tq                      (elisp) Transaction Queues
  trace                   -
  unsafep                 (elisp) Function Safety
  warnings                (elisp) Warnings


* Above list created using default directory lisp/emacs-lisp/ with
  (shell-command
    "sed '/^(provide '\\''/!d;s//  /;s/).*//' *.el | sort | uniq")


* How to use this file to improve Emacs
  (loop
   (let* ((feature (choose-one Features))
          (status (feature-status feature)))
     (if (or (eq '- status) (not (verify status)))
         (update feature (current-docs feature))
       (case status
         (todo (let (doc patch feedback)
                 (while (not (grok feature))
                   (or (play-with feature)
                       (grep feature Internet)
                       (grep feature (wisdom-maybe "emacs-devel"))))
                 (setq doc (write-documentation feature)
                       patch (diff (current-docs) doc))
                 (while (not (and (correct doc)
                                  (well-placed doc)
                                  (well-formed patch)))
                   (setq doc (revise doc)
                         patch (diff (current-docs) doc))
                         feedback (wisdom-maybe "emacs-devel" patch))
                 (when (install patch)
                   (when (update feature (current-docs feature))
                     (job-well-done user-login-name)))))
         (n/a (job-well-done user-login-name))))))


* Etc
  Local variables:
  mode: outline
  End: