1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-04 02:51:31 -08:00
emacs/lisp
Wilson Snyder 6288f0ca4e Update verilog-mode.el from master.
* progmodes/verilog-mode.el (verilog-pretty-expr): Rework
verilog-pretty-expr to handle new assignment operators in system
verilog, such as += *= and the like.
(verilog-assignment-operator-re): Regular expression to find the
assigment operator in a verilog assignment.
(verilog-assignment-operation-re): Regular expression to find an
assignment statement for pretty-expr.
(verilog-in-attribute-p): Query returns true if point is in an
attribute context; used to skip these for expression line up from
pretty-expr.
(verilog-in-parameter-p): Query returns true if point is in an
parameter definition context; used to skip these for expression
line up from pretty-expr.
(verilog-in-parenthesis-p): Query returns true if point is in a
parenthetical expression, specifically ( ) but not [ ] or { };
used by pretty-expr.
(verilog-just-one-space): If there is no space, don't add one.
(verilog-get-lineup-indent-2): Specifically skip just attribute
contexts for expression lineup, rather than skipping all
parenthetical expressions.
(verilog-calculate-indent): Fix comment, and fix indent.
(verilog-do-indent): Indent declarations in lists (suggested by
Joachim Lechner).
(verilog-mode-abbrev-table): Populate abbrev mode with the various
skeleton items.
(verilog-sk-ovm-class): Add skeleton for OVM classes (reported
by Alain Mellan).

29  Wilson Snyder  <wsnyder@wsnyder.org>

* verilog-mode.el (verilog-read-defines): Fix reading parameters
with embedded comments.  Reported by Ray Stevens.
(verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
Reported by Tim Holt.
(verilog-auto): Fix AUTOing a upper module then AUTOing module
instantiated by upper module causing wrong expansion until AUTOed a
second time.  Reported by K C Buckenmaier.
(verilog-diff-auto): Fix showing .* as a difference when
`verilog-auto-star-save' off.  Reported by Dan Dever.
(verilog-auto-reset, verilog-read-always-signals)
(verilog-auto-reset-blocking-in-non): Fix AUTORESET including
temporary signals in reset list if
verilog-auto-reset-blocking-in-non is nil, and match assignment
style to each signal's assignment type, bug381.  Reported by
Thomas Esposito.
(verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
(verilog-uvm-statement-re): Support UVM indentation and
highlighting, with old OVM keywords only.
(verilog-auto-tieoff, verilog-auto-tieoff-declaration): Support
AUTOTIEOFF creating non-wire data types.  Suggested by Jonathan
Greenlaw.
(verilog-auto-insert-lisp, verilog-delete-to-paren)
(verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
(verilog-inject-sense, verilog-read-inst-pins)
(verilog-read-sub-decls, verilog-read-sub-decls-line): Fix
mismatching parenthesis inside commented out code when deleting
AUTOINST, bug383. Reported by Jonathan Greenlaw.
(verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
non-numeric vector width.  Reported by Alex Reed.
(verilog-auto-ascii-enum): Add "onehot" option to work around not
detecting signals with parameter widths. Reported by Alex Reed.
(verilog-auto-delete-trailing-whitespace): With
`verilog-auto-delete-trailing-whitespace' remove trailing
whitespace in auto expansion, bug371.  Reported by Brad Dobbie.
(verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
Fix verilog-scan-cache corruption when running user AUTO expansion
hooks that call indentation routines.
(verilog-simplify-range-expression): Fix typo ignoring lower case
identifiers.
(verilog-delete-auto): Fix delete-autos to also remove user created
automatics, as long as they start with AUTO.
(verilog-batch-diff-auto, verilog-diff-auto)
(verilog-diff-function): Add `verilog-diff-auto' and bind to
"C-c?"  to report differences in AUTO expansion, ignoring spaces.
(verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
(verilog-in-paren-quick, verilog-re-search-backward-quick)
(verilog-re-search-forward-quick, verilog-syntax-ppss): Fix
calling `syntax-ppss' when inside auto expansions as the ppss hook
is disabled and its cache will get corrupt, causing AUTOS not to
expand.  Instead use only -quick functions.
(verilog-scan-region): Fix scanning over escaped quotes.
(verilog-inside-comment-or-string-p, verilog-inside-comment-p)
(verilog-re-search-backward-quick)
(verilog-re-search-forward-quick, verilog-scan): verilog-scan and
related functions now ignore strings, to fix misparsing of strings
with magic comments embedded in them.
(verilog-read-auto-template): Fix
'verilog-auto-inst-template-numbers' with extra newline before (.
Reported by Brad Dobbie.
(verilog-read-auto-template): Fix
'verilog-auto-inst-template-numbers' with comments.  Reported by
Brad Dobbie.
(verilog-auto-inst, verilog-auto-inst-param)
(verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
merge conflicts with AUTOINST, bug358.  Reported by Brad Dobbie.
(verilog-auto-inst-template-numbers): Add 'lhs' policy for
debugging templates without merge conflicts, bug357.  Reported by
Brad Dobbie.
(verilog-read-auto-template): Fix
verilog-auto-inst-template-numbers with multiple templates.
Reported by Brad Dobbie.
(verilog-define-abbrev): Fix verilog-mode abbrevs to be system
abbrevs so user won't be asked to save.
(verilog-read-auto-lisp-present): Fix to start at beginning of
buffer in case called outside of verilog-auto.
(verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
to "X-2".  Reported by Matthew Myers.
(verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
all inputs from module templates.  Reported by Leith Johnson.
(verilog-module-inside-filename-p): Fix locating programs as with
modules.
(verilog-auto-inst-port): Fix vl-width expressions when using
verilog-auto-inst-param-value, bug331.  Reported by Julian Gorfajn.
(verilog-decls-get-regs, verilog-decls-get-signals,
verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
verilog-read-decls): Combine reg and wire structures into one var
structure to represent SystemVerilog concepts.
(verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
(verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
(verilog-auto-wire-type, verilog-insert-definition): Add
verilog-auto-wire-type and AUTOLOGIC to support using
SystemVerilog "logic" keyword instead of "wire"/"reg".
(verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
to declares outputs that also have assignments (presumably in an
ifdef or generate if so there's not a driver conflict).  Reported
by Matthew Myers.
(verilog-auto-declare-nettype, verilog-insert-definition): Add
verilog-auto-declare-nettype to fix declarations using
`default_nettype none.  Reported by Julian Gorfajn.
(verilog-read-always-signals-recurse, verilog-read-decls)
(verilog-read-sub-decls-gate): Fix infinite loop with (*) and
malformed end statement, bug325.  Reported by Joshua Wise and
Andrew Drake.
(verilog-auto-star-safe, verilog-delete-auto-star-implicit)
(verilog-inst-comment-re): Fix not deleting Interfaced comment
when expanding .* in interfaces, bug320.  Reported by Pierre-David
Pfister.
(verilog-read-module-name): Fix import statements between module
name and open parenthesis, bug317.  Reported by Pierre-David
Pfister.
(verilog-simplify-range-expression): Fix simplification of
multiplications inside AUTOWIRE connections, bug303.
(verilog-auto-inst-port): Support parameter expansion in
multidimensional arrays.
(verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
after "assert property".  Reported by Julian Gorfajn.
(verilog-simplify-range-expression): Fix "couldn't merge" errors
with multiplication, bug303.
(verilog-read-decls): Fix parsing of unsigned data types, bug302.
Reported by Jan Frode Lonnum.
2011-11-29 13:11:23 -07:00
..
calc Spelling fixes. 2011-11-22 23:03:56 -08:00
calendar Spelling fixes. 2011-11-19 18:29:42 -08:00
cedet Spelling fixes. 2011-11-26 20:43:11 -08:00
emacs-lisp * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc. 2011-11-28 14:26:39 +08:00
emulation Spelling fixes. 2011-11-26 00:26:37 -08:00
erc erc-dcc: allow SEND commands containing quoted filenames with spaces in them 2011-11-28 10:24:08 +01:00
eshell Spelling fixes. 2011-11-19 18:29:42 -08:00
gnus Spelling fixes (mostly "inactive" vs "deactivate"). 2011-11-27 10:17:40 -08:00
international Spelling fixes. 2011-11-26 20:43:11 -08:00
language Spelling fixes. 2011-11-24 23:14:48 -08:00
mail Auto-commit of loaddefs files. 2011-11-24 06:24:59 -05:00
mh-e Spelling fixes (mostly "inactive" vs "deactivate"). 2011-11-27 10:17:40 -08:00
net Spelling fixes (mostly "inactive" vs "deactivate"). 2011-11-27 10:17:40 -08:00
nxml Spelling fixes. 2011-11-26 20:43:11 -08:00
obsolete Fix typos. 2011-11-24 02:58:14 +01:00
org Spelling fixes. 2011-11-26 20:43:11 -08:00
play Spelling fixes. 2011-11-26 20:43:11 -08:00
progmodes progmodes/gdb-mi.el (gdb-init-1): Condition execution of gdb-get-source-file-list on gdb-create-source-file-list. 2011-11-27 21:33:25 +13:00
term Spelling fixes. 2011-11-26 20:43:11 -08:00
textmodes Spelling fixes (mostly "inactive" vs "deactivate"). 2011-11-27 10:17:40 -08:00
url Spelling fixes. 2011-11-26 20:43:11 -08:00
vc * vc/diff-mode.el (diff-find-file-name): Make `read-file-name' 2011-11-29 15:59:24 +01:00
.gitignore
abbrev.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
align.el lisp/*.el: Lexical-binding cleanup. 2011-04-19 15:44:55 +02:00
allout-widgets.el Spelling fixes. 2011-11-19 01:18:31 -08:00
allout.el Spelling fixes. 2011-11-26 20:43:11 -08:00
ansi-color.el Spelling fixes. 2011-11-17 01:09:20 -08:00
apropos.el Spelling fixes. 2011-11-14 15:59:56 -08:00
arc-mode.el Spelling fixes. 2011-11-17 09:40:48 -08:00
array.el
autoarg.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
autoinsert.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
autorevert.el Spelling fixes. 2011-11-19 18:29:42 -08:00
avoid.el
battery.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
bindings.el Rework count-words-region. New command count-words. 2011-10-08 12:37:46 -04:00
bookmark.el Spelling fixes. 2011-11-26 20:43:11 -08:00
bs.el Fix typos. 2011-11-14 22:00:24 +01:00
buff-menu.el Capitalize non-function content words in menu item strings. 2011-09-18 23:43:20 +03:00
button.el Fix typos. 2011-11-16 13:34:47 +01:00
calculator.el Rename split-window-{above-each-other|split-window-side-by-side} 2011-10-30 09:56:03 +08:00
case-table.el
cdl.el
ChangeLog Update verilog-mode.el from master. 2011-11-29 13:11:23 -07:00
ChangeLog.1 Spelling fixes. 2011-11-14 12:23:26 -08:00
ChangeLog.2 Fix typos. 2011-11-20 04:48:53 +01:00
ChangeLog.3 Spelling fixes. 2011-11-24 23:14:48 -08:00
ChangeLog.4 Spelling fixes (mostly "inactive" vs "deactivate"). 2011-11-27 10:17:40 -08:00
ChangeLog.5 Spelling fixes. 2011-11-26 20:43:11 -08:00
ChangeLog.6 Spelling fixes. 2011-11-22 23:03:56 -08:00
ChangeLog.7 Spelling fixes (mostly "inactive" vs "deactivate"). 2011-11-27 10:17:40 -08:00
ChangeLog.8 Spelling fixes. 2011-11-26 20:43:11 -08:00
ChangeLog.9 Fix typos. 2011-11-24 02:58:14 +01:00
ChangeLog.10 Spelling fixes. 2011-11-26 20:43:11 -08:00
ChangeLog.11 Fix typos. 2011-11-25 14:26:30 +01:00
ChangeLog.12 Spelling fixes. 2011-11-26 20:43:11 -08:00
ChangeLog.13 Fix typos. 2011-11-25 14:26:30 +01:00
ChangeLog.14 Fix typos. 2011-11-20 20:35:27 +01:00
ChangeLog.15 Spelling fixes (mostly "inactive" vs "deactivate"). 2011-11-27 10:17:40 -08:00
chistory.el
cmuscheme.el Reintroduce pop-to-buffer-same-window; use it for previous users of same-window-*. 2011-09-22 12:15:52 -04:00
color.el Spelling fixes. 2011-11-24 23:14:48 -08:00
comint.el Spelling fixes. 2011-11-19 23:30:16 -08:00
completion.el lisp/*.el: Lexical-binding cleanup. 2011-04-19 15:44:55 +02:00
composite.el Spelling fixes. 2011-11-26 20:43:11 -08:00
COPYING
cus-dep.el cus-dep fix for build failure first occurring with 2011-06-13T08:21:09Z!rudalics@gmx.at 2011-06-13 17:42:40 -04:00
cus-edit.el Spelling fixes (mostly "inactive" vs "deactivate"). 2011-11-27 10:17:40 -08:00
cus-face.el Fix for disable-theme/defface interaction (Bug#8889). 2011-06-18 14:49:19 -04:00
cus-start.el Rename window-splits to window-combination-resize. 2011-11-17 11:27:56 +01:00
cus-theme.el Make custom-theme-choose-mode inherit from special-mode. 2011-08-28 15:05:26 -04:00
custom.el Allow overriding of theme confirmation via custom-safe-themes. 2011-10-01 14:27:21 -04:00
dabbrev.el * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults 2011-07-06 19:45:01 +02:00
delim-col.el Spelling fixes. 2011-11-08 22:10:51 -08:00
delsel.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
descr-text.el Fix typos. 2011-11-20 20:35:27 +01:00
desktop.el Spelling fixes. 2011-11-17 09:40:48 -08:00
dframe.el Spelling fixes. 2011-11-26 20:43:11 -08:00
dired-aux.el Spelling fixes. 2011-11-17 01:09:20 -08:00
dired-x.el Rename split-window-{above-each-other|split-window-side-by-side} 2011-10-30 09:56:03 +08:00
dired.el Spelling fixes. 2011-11-19 01:18:31 -08:00
dirtrack.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
disp-table.el * disp-table.el (display-table-print-array): New function. 2011-07-02 14:27:53 +02:00
dnd.el lisp/*.el: Lexical-binding cleanup. 2011-04-19 15:44:55 +02:00
doc-view.el Spelling fixes. 2011-11-22 23:03:56 -08:00
dos-fns.el lisp/*.el: Lexical-binding cleanup. 2011-04-19 15:44:55 +02:00
dos-vars.el
dos-w32.el Don't quote lambda expressions with `quote'. 2011-05-23 14:57:17 -03:00
double.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
dynamic-setting.el Use GConf and GSettings both, check GConf/GSettings toolbar style and font name. 2011-07-05 10:21:38 +02:00
ebuff-menu.el Change scroll-up/down bindings to Emacs 24's scroll-*-command. 2011-10-01 16:32:01 -04:00
echistory.el lisp/*.el: Lexical-binding cleanup. 2011-04-19 15:44:55 +02:00
edmacro.el lisp/*.el: Lexical-binding cleanup. 2011-04-19 15:44:55 +02:00
ehelp.el
electric.el * lisp/electric.el (electric-indent-mode): Fix last change (too optimistic). 2011-11-20 01:29:57 -05:00
elide-head.el
emacs-lock.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
env.el
epa-dired.el
epa-file.el * lisp/epa-file.el (epa-file-select-keys): Revert to nil default. 2011-08-12 09:49:45 -04:00
epa-hook.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
epa-mail.el Simplify GnuPG group expansion using epg-expand-group. 2011-08-17 10:31:05 +09:00
epa.el Change scroll-up/down bindings to Emacs 24's scroll-*-command. 2011-10-01 16:32:01 -04:00
epg-config.el
epg.el Spelling fixes. 2011-11-22 23:03:56 -08:00
expand.el Fix typos. 2011-11-16 13:34:47 +01:00
ezimage.el Spelling fixes. 2011-11-19 23:30:16 -08:00
face-remap.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
facemenu.el lisp/facemenu.el: Slightly expand a comment in `list-colors-duplicates'. 2011-10-24 21:29:19 +02:00
faces.el Spelling fixes. 2011-11-19 23:30:16 -08:00
ffap.el Spelling fixes. 2011-11-17 01:09:20 -08:00
filecache.el
files-x.el * lisp/files-x.el (modify-file-local-variable): Obey commenting conventions. 2011-11-18 09:34:39 -05:00
files.el * lisp/files.el (find-file): Don't use force-same-window. 2011-11-28 14:43:52 -05:00
filesets.el Spelling fixes. 2011-11-26 20:43:11 -08:00
find-cmd.el
find-dired.el * lisp/find-dired.el (find-grep-options): Simplify. 2011-06-29 20:03:07 -07:00
find-file.el
find-lisp.el lisp/*.el: Lexical-binding cleanup. 2011-04-19 15:44:55 +02:00
finder.el Restore ability to show a restricted list of packages in Package Menu. 2011-04-24 16:32:23 -04:00
flow-ctrl.el
foldout.el Spelling fixes. 2011-11-19 18:29:42 -08:00
follow.el Spelling fixes. 2011-11-26 20:43:11 -08:00
font-core.el Spelling fixes. 2011-11-19 18:29:42 -08:00
font-lock.el Spelling fixes. 2011-11-19 23:30:16 -08:00
format-spec.el
format.el lisp/*.el: Lexical-binding cleanup. 2011-04-19 15:44:55 +02:00
forms-d2.el
forms-pass.el
forms.el Spelling fixes. 2011-11-19 18:29:42 -08:00
frame.el * frame.el (auto-raise-mode, auto-lower-mode): Doc fix. 2011-11-29 14:07:51 +08:00
fringe.el * fringe.el (fringe-query-style): Remove redundant text " (type ? 2011-07-03 04:37:52 +02:00
generic-x.el Spelling fixes. 2011-11-13 22:27:12 -08:00
gs.el
help-at-pt.el
help-fns.el Spelling fixes. 2011-11-14 15:59:56 -08:00
help-macro.el
help-mode.el Spelling fixes. 2011-11-19 01:18:31 -08:00
help.el Spelling fixes. 2011-11-24 23:14:48 -08:00
hex-util.el
hexl.el
hfy-cmap.el
hi-lock.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
hilit-chg.el Spelling fixes. 2011-11-17 01:09:20 -08:00
hippie-exp.el Spelling fixes. 2011-11-19 01:18:31 -08:00
hl-line.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
htmlfontify.el Spelling fixes. 2011-11-19 18:29:42 -08:00
ibuf-ext.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
ibuf-macs.el
ibuffer.el Spelling fixes. 2011-11-14 23:55:13 -08:00
icomplete.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
ido.el Spelling fixes. 2011-11-26 20:43:11 -08:00
ielm.el Change modes that used same-window-* vars to use switch-to-buffer. 2011-09-11 14:30:07 -04:00
iimage.el
image-dired.el Spelling fixes. 2011-11-19 23:30:16 -08:00
image-file.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
image-mode.el Spelling fixes. 2011-11-13 22:27:12 -08:00
image.el * lisp/image.el (imagemagick-register-types): Use regexp-opt. 2011-09-16 09:46:42 -04:00
imenu.el
indent.el Update doc for behavior of TAB in Text based modes. 2011-11-29 23:55:54 +08:00
info-look.el * info-look.el (info-lookup-add-help): Clarify that ARGS is a list 2011-07-02 16:05:38 +02:00
info-xref.el Spelling fixes. 2011-11-19 23:30:16 -08:00
info.el Spelling fixes. 2011-11-22 23:03:56 -08:00
informat.el lisp/*.el: Lexical-binding cleanup. 2011-04-19 15:44:55 +02:00
isearch.el * lisp/isearch.el (isearch-yank-x-selection): Deactivate mark. 2011-11-29 13:39:16 -05:00
isearchb.el
iswitchb.el Spelling fixes. 2011-11-19 18:29:42 -08:00
jit-lock.el
jka-cmpr-hook.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
jka-compr.el Rework previous change. 2011-07-15 13:18:53 -04:00
json.el Fix typos. 2011-11-20 20:35:27 +01:00
kermit.el fix many doubled-word typos 2011-05-10 15:57:12 +02:00
kmacro.el Spelling fixes. 2011-11-17 01:09:20 -08:00
ldefs-boot.el Spelling fixes (mostly "inactive" vs "deactivate"). 2011-11-27 10:17:40 -08:00
ledit.el
linum.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
loadhist.el Spelling fixes. 2011-11-19 23:30:16 -08:00
loadup.el Add C interface for Unicode character property table. 2011-07-07 07:43:48 +09:00
locate.el lisp/*.el: Lexical-binding cleanup. 2011-04-19 15:44:55 +02:00
longlines.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
lpr.el Give some autoloaded things doc-strings. 2011-11-24 00:21:03 -08:00
ls-lisp.el lisp/*.el: Lexical-binding cleanup. 2011-04-19 15:44:55 +02:00
macros.el lisp/*.el: Lexical-binding cleanup. 2011-04-19 15:44:55 +02:00
Makefile.in
makefile.w32-in
makesum.el lisp/*.el: Lexical-binding cleanup. 2011-04-19 15:44:55 +02:00
man.el Spelling fixes. 2011-11-26 20:43:11 -08:00
master.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
mb-depth.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
md4.el
menu-bar.el Spelling fixes. 2011-11-19 18:29:42 -08:00
midnight.el
minibuf-eldef.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
minibuffer.el Spelling fixes. 2011-11-19 01:18:31 -08:00
misc.el lisp/misc.el (list-dynamic-libraries): Fix computation of header fields. 2011-06-21 12:04:28 +02:00
misearch.el * lisp/isearch.el (isearch-lazy-highlight-new-loop): 2011-11-19 23:03:12 +02:00
mouse-copy.el
mouse-drag.el Merge from emacs-23; up to 2010-06-09T17:54:28Z!albinus@detlef. 2011-04-22 20:07:16 -07:00
mouse-sel.el Spelling fixes. 2011-11-19 18:29:42 -08:00
mouse.el * lisp/mouse.el (mouse-yank-primary): Push the mark. 2011-10-29 14:09:02 +08:00
mpc.el Spelling fixes. 2011-11-26 20:43:11 -08:00
msb.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
mwheel.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
newcomment.el Fix for uncommentin in Fundamental mode. 2011-09-18 14:10:01 -04:00
notifications.el Spelling fixes. 2011-11-19 23:30:16 -08:00
novice.el
outline.el Fix typos. 2011-11-15 18:37:37 +01:00
paren.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
password-cache.el password-cache.el (password-cache-remove): Remove entries even if the value is nil, so that password with a nil value (negative caching) is possible to invalidate. 2011-09-20 14:08:04 +00:00
patcomp.el
paths.el * lib-src/make-docfile.c (scan_lisp_file): Treat defcustom like defvar. 2011-11-23 23:32:40 -08:00
pcmpl-cvs.el * lisp/pcmpl-cvs.el (pcomplete/cvs): Add "status" handler. 2011-09-29 00:21:06 -07:00
pcmpl-gnu.el * pcmpl-gnu.el: Use lexical-binding. 2011-10-01 21:04:01 -04:00
pcmpl-linux.el * lisp/pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el. 2011-07-04 16:08:02 -04:00
pcmpl-rpm.el * lisp/pcmpl-rpm.el (pcomplete/rpm): Minor simplification. 2011-06-15 14:40:00 -04:00
pcmpl-unix.el * lisp/pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging. 2011-10-14 14:39:16 -04:00
pcomplete.el * lisp/pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries 2011-10-03 12:49:56 -04:00
printing.el Spelling fixes. 2011-11-24 23:14:48 -08:00
proced.el More uses of error' and warning' faces. 2011-08-24 21:09:18 +03:00
ps-bdf.el
ps-def.el lisp/*.el: Lexical-binding cleanup. 2011-04-19 15:44:55 +02:00
ps-mule.el Spelling fixes. 2011-11-22 23:03:56 -08:00
ps-print.el Auto-commit of loaddefs files. 2011-11-23 06:20:43 -05:00
ps-samp.el Fix typos. 2011-11-16 18:47:25 +01:00
README
recentf.el Spelling fixes. 2011-11-19 01:18:31 -08:00
rect.el Leave point at the end of the rectangle after replacing text 2011-07-14 17:23:08 +02:00
register.el Restore accidental change to insert-register 2011-07-09 11:11:57 +08:00
repeat.el Spelling fixes. 2011-11-22 23:03:56 -08:00
replace.el Spelling fixes. 2011-11-26 20:43:11 -08:00
reposition.el
reveal.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
rfn-eshadow.el * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind 2011-11-23 21:05:50 +01:00
rot13.el Spelling fixes. 2011-11-08 22:10:51 -08:00
ruler-mode.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
savehist.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
saveplace.el * lisp/saveplace.el (save-place-limit): Make it finite. (Bug#9352) 2011-08-26 20:52:47 -04:00
sb-image.el
scroll-all.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
scroll-bar.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
scroll-lock.el
select.el Move clipboard-manager functionality out of hooks. 2011-05-28 20:45:00 -04:00
server.el * lisp/server.el (server-eval-and-print): Allow C-g. 2011-11-22 10:18:56 -05:00
ses.el Spelling fixes. 2011-11-22 23:03:56 -08:00
shadowfile.el lisp/*.el: Lexical-binding cleanup. 2011-04-19 15:44:55 +02:00
shell.el Spelling fixes. 2011-11-19 18:29:42 -08:00
simple.el Fix bug #10076 with vertical cursor motion in hscrolled windows. 2011-11-19 21:49:56 +02:00
skeleton.el
sort.el
soundex.el
speedbar.el Spelling fixes. 2011-11-26 20:43:11 -08:00
startup.el Spelling fixes. 2011-11-19 23:30:16 -08:00
strokes.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
subr.el Spelling fixes. 2011-11-22 23:03:56 -08:00
t-mouse.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
tabify.el Preserve point when doing untabify 2011-07-13 20:12:05 +02:00
talk.el Rename split-window-{above-each-other|split-window-side-by-side} 2011-10-30 09:56:03 +08:00
tar-mode.el Spelling fixes. 2011-11-14 15:59:56 -08:00
tempo.el
term.el Spelling fixes. 2011-11-26 20:43:11 -08:00
terminal.el Spelling fixes. 2011-11-19 01:18:31 -08:00
thingatpt.el Doc fixes for thingatpt.el. 2011-07-07 14:31:57 -04:00
thumbs.el Spelling fixes. 2011-11-19 23:30:16 -08:00
time-stamp.el Lisp code shouldn't use set-time-zone-rule except through setenv. 2011-08-08 11:53:35 -04:00
time.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
timezone.el
tmm.el * lisp/tmm.el (tmm-prompt): Use minibuffer-with-setup-hook. 2011-11-15 21:26:00 -05:00
tool-bar.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
tooltip.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
tree-widget.el lisp/*.el: Lexical-binding cleanup. 2011-04-19 15:44:55 +02:00
tutorial.el Spelling fixes. 2011-11-26 00:26:37 -08:00
type-break.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
uniquify.el
userlock.el
vcursor.el
version.el * lisp/version.el (emacs-build-system): Give it a doc-string. 2011-11-23 23:24:31 -08:00
view.el * lisp/view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19. 2011-11-24 09:09:56 +02:00
vt-control.el
vt100-led.el
w32-fns.el Spelling fixes. 2011-11-24 23:14:48 -08:00
w32-vars.el
wdired.el Fix typos. 2011-11-24 02:58:14 +01:00
whitespace.el Tweak whitespace-newline color for 16-color displays. 2011-11-26 10:50:48 +02:00
wid-browse.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00
wid-edit.el Spelling fixes. 2011-11-14 23:55:13 -08:00
widget.el lisp/*.el: Lexical-binding cleanup. 2011-04-19 15:44:55 +02:00
windmove.el Spelling fixes. 2011-11-14 15:59:56 -08:00
window.el * lisp/files.el (find-file): Don't use force-same-window. 2011-11-28 14:43:52 -05:00
winner.el Fix typos. 2011-07-14 03:09:00 +02:00
woman.el Spelling fixes. 2011-11-19 18:29:42 -08:00
x-dnd.el Spelling fixes. 2011-11-14 23:55:13 -08:00
xml.el Fix typos. 2011-11-20 04:48:53 +01:00
xt-mouse.el Fix minor mode docstrings for the new meaning of a nil ARG. 2011-10-19 08:54:24 -04:00

This directory contains source code for the parts of Emacs that are
written in Emacs Lisp.  *.el files are Emacs Lisp source, and the
corresponding *.elc files are byte-compiled versions.  Byte-compiled
files are architecture-independent.

The term subdirectory contains Lisp files that customize Emacs for
certain terminal types.  When Emacs starts, it checks the TERM
environment variable to get the terminal type and loads
`term/${TERM}.el' if it exists.

The other subdirectories hold Lisp packages grouped by their general
purpose.