aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Rewrite the cconv conversion algorithm, for clarity.Stefan Monnier2011-03-096-436/+373
| | | | | | | | | | | | | * lisp/emacs-lisp/byte-opt.el (byte-compile-inline-expand): Adjust check for new byte-code representation. * lisp/emacs-lisp/cconv.el (cconv--convert-function): Rename from cconv-closure-convert-function. (cconv-convert): Rename from cconv-closure-convert-rec. (cconv--analyse-use): Rename from cconv-analyse-use. (cconv--analyse-function): Rename from cconv-analyse-function. (cconv--analyse-use): Change some patterns to silence compiler. (cconv-convert, cconv--convert-function): Rewrite. * test/automated/lexbind-tests.el: New file.
* Merge from trunkStefan Monnier2011-03-06280-14134/+17700
|\
| * Bind C-y in Isearch to isearch-yank-kill.Chong Yidong2011-03-065-16/+36
| | | | | | | | | | | | | | * lisp/isearch.el (isearch-mode-map): Bind C-y to isearch-yank-kill, and move isearch-yank-line to M-s C-e. * doc/emacs/search.texi (Isearch Yank): C-y now bound to isearch-yank-kill.
| * (c-guess-basic-syntax): Move CASE 19 to a different place, correctly toAlan Mackenzie2011-03-062-28/+29
| | | | | | | | process template-args-cont lines.
| * progmodes/cc-engine.el (c-guess-basic-syntax): Reindent.Alan Mackenzie2011-03-062-1360/+1364
| |
| * Improve packaging documentation.Chong Yidong2011-03-063-124/+173
| | | | | | | | | | | | | | | | * package.texi (Packaging, Packaging Basics, Simple Packages) (Multi-file Packages): Expand and clarify. (Package Archives): Temporary placeholder node. * elisp.texi (Top): Update node listing.
| * Merge: current_column: Now returns EMACS_INT, fixing some iftcPaul Eggert2011-03-069-66/+87
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | that was introduced in the 2002-06-02 change "temporarily"; see <http://lists.gnu.org/archive/html/emacs-devel/2002-06/msg00039.html>. * bytecode.c (Fbyte_code): Don't cast current_column () to int. * cmds.c (internal_self_insert): Likewise. * indent.c (Fcurrent_column): Likewise. * keymap.c (describe_command): Likewise. * minibuf.c (read_minibuf): Likewise. * indent.c (Fcurrent_indentation): Don't cast position_indentation () to int. * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec): Likewise. * cmds.c (internal_self_insert): Declare locals to be EMACS_INT, not int or double, if they might contain a column number. * indent.c (current_column, Findent_to, indented_beyond_p): (compute_motion, vmotion): Likewise. * keymap.c (describe_command): Likewise. * xdisp.c (pint2str): Likewise. * indent.c (last_known_column): Now EMACS_INT, not int. * minibuf.c (minibuf_prompt_width): Likewise. * indent.c (current_column, current_column_1, position_indentation): Return EMACS_INT, not double. * lisp.h (current_column): Likewise. * indent.c (indented_beyond_p): Last arg is now EMACS_INT, not double. All callers changed. * lisp.h (indented_beyond_p): Likewise. * minibuf.c (minibuf_prompt, minibuf_prompt_width): Move here from xdisp.c, and make static, since these are used only here. * window.h, xdisp.c (minibuf_prompt, minibuf_prompt_width): Remove decls. * xdisp.c (redisplay_window): Reindent to match Emacs style.
| | * current_column: Now returns EMACS_INT, fixing some iftc.Paul Eggert2011-03-068-46/+68
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * bytecode.c (Fbyte_code): Don't cast current_column () to int. * cmds.c (internal_self_insert): Likewise. * indent.c (Fcurrent_column): Likewise. * keymap.c (describe_command): Likewise. * minibuf.c (read_minibuf): Likewise. * indent.c (Fcurrent_indentation): Don't cast position_indentation () to int. * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec): Likewise. * cmds.c (internal_self_insert): Declare locals to be EMACS_INT, not int or double, if they might contain a column number. * indent.c (current_column, Findent_to, indented_beyond_p): (compute_motion, vmotion): Likewise. * keymap.c (describe_command): Likewise. * xdisp.c (pint2str): Likewise. * indent.c (last_known_column): Now EMACS_INT, not int. * minibuf.c (minibuf_prompt_width): Likewise. * indent.c (current_column, current_column_1, position_indentation): Return EMACS_INT, not double. * lisp.h (current_column): Likewise. * indent.c (indented_beyond_p): Last arg is now EMACS_INT, not double. All callers changed. * lisp.h (indented_beyond_p): Likewise.
| | * * xdisp.c (redisplay_window): Likewise.Paul Eggert2011-03-062-3/+4
| | |
| | * * minibuf.c (minibuf_prompt, minibuf_prompt_width): Move herePaul Eggert2011-03-064-18/+14
| |/ | | | | | | | | | | from xdisp.c, and make static, since these are used only here. * window.h, xdisp.c (minibuf_prompt, minibuf_prompt_width): Remove decls.
| * * cmds.c (internal_self_insert): Reindent to match Emacs style.Paul Eggert2011-03-062-16/+19
| |
| * * xdisp.c (SKIP_GLYPHS): Removed unused macro.Paul Eggert2011-03-062-12/+1
| |
| * * xdisp.c (update_window_cursor): Now static, since it's not used elsewhere.Paul Eggert2011-03-062-1/+2
| |
| * * xdisp.c (produce_glyphless_glyph): Make a pointer "const"Paul Eggert2011-03-062-1/+4
| | | | | | | | since it might point to immutable storage.
| * * xdisp.c (BUILD_GLYPHLESS_GLYPH_STRING): Omit unused local var.Paul Eggert2011-03-062-1/+1
| |
| * Merge from mainline.Paul Eggert2011-03-05128-1574/+2594
| |\
| | * Add package.texi to doc/lispref/Makefile.in.Chong Yidong2011-03-062-0/+5
| | |
| | * * calc/calc-units.el (math-midi-round): Translate calc-note-thresholdJay Belanger2011-03-051-1/+2
| | | | | | | | | | | | to an appropriate fraction.
| | * * calc/calc-units.el (math-midi-round, math-freqp, math-midip)Jay Belanger2011-03-056-23/+344
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (math-spnp, math-spn-to-midi, math-midi-to-spn, math-freq-to-spn) (math-midi-to-freq, math-spn-to-freq, calcFunc-spn, calcFunc-midi) (calcFunc-freq, calc-freq, calc-midi, calc-spn): New functions. (math-notes): New variable. * calc/calc.el (calc-note-threshold): New variable. * calc/calc-ext.el (calc-init-extensions): Add keybindings for calc-spn, calc-midi, calc-freq. Add autoloads for calcFunc-spn, calcFunc-midi, calcFunc-freq, calc-spn, calc-midi and calc-freq. * doc/misc/calc.tex (Musical Notes): New section. (Customizing Calc): Mention calc-note-threshold.
| | * * doc/misc/calc.texi (Logarithmic Units): Rename calc-logunits-dblevelJay Belanger2011-03-055-10/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and calc-logunits-nplevel to calc-dblevel and calc-nplevel, respectively. * calc/calc-ext.el (calc-init-extensions): Rename calc-logunits-dblevel and calc-logunits-nplevel to calc-dblevel and calc-nplevel, respectively. * calc/calc-units.el (calc-dblevel): Rename from calc-logunits-dblevel. (calc-nplevel): Rename from calc-logunits-nplevel.
| | * Allow specifying local ELPA mirrors in package-archives.Chong Yidong2011-03-052-57/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * emacs-lisp/package.el (package-archives): Accept either ordinary directory names, in addition to HTTP URLs. (package--with-work-buffer): New macro. Handle normal directories. (package-handle-response): Don't display the failing buffer. (package-download-single, package-download-tar) (package--download-one-archive): Use package--with-work-buffer. (package-archive-base): Rename from package-archive-url.
| | * Mention xmodmap-generic-mode in NEWS.Glenn Morris2011-03-051-0/+2
| | |
| | * generic-x trivia.Glenn Morris2011-03-052-2/+9
| | | | | | | | | | | | | | | * lisp/generic-x.el (generic-unix-modes): Add xmodmap-generic-mode. (xmodmap-generic-mode): Respect generic-extras-enable-list.
| | * * lisp/generic-x.el (xmodmap-generic-mode): New. (Bug#2065) (tiny change)Daniel Clemente2011-03-052-0/+12
| | |
| | * Fix typos.Juanma Barranquero2011-03-0611-341/+243
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * etc/srecode/el.srt: Fix typo. * lisp/allout.el (allout-init, allout-prefixed-keybindings) (allout-unprefixed-keybindings): * lisp/progmodes/prolog.el (prolog-find-term): Fix typos in docstrings. * lisp/org/org.el (org-blank-before-new-entry, org-context-in-file-links) (org-refile-targets, org-log-repeat, org-insert-link) (org-speed-command-default-hook, org-speed-command-hook) (org-in-regexps-block-p, org-yank-generic, org-goto-first-child): Fix typos in docstrings. (org-toggle-pretty-entities): Fix typo in message.
| | * * lisp/emacs-lisp/elp.el (elp-results): Fix off-by-one in header. (Bug#2746)Nikolaj Schumacher2011-03-052-1/+5
| | |
| | * * lisp/textmodes/sgml-mode.el (sgml-fill-nobreak): Give it a doc. (Bug#5326)Kevin Ryde2011-03-052-1/+10
| | |
| | * Doc fixes for bug#5567 (tiny change)Michael Shields2011-03-054-22/+30
| | | | | | | | | | | | | | | * lisp/window.el (one-window-p, walk-windows, display-buffer): Doc fixes. * src/window.c (Fnext_window): Doc (and comment) fixes.
| | * * cus-edit.el (custom-prompt-variable): Use the `custom-get' propertyJay Belanger2011-03-052-1/+10
| | | | | | | | | | | | of the variable if it exists.
| | * NEWS.Glenn Morris2011-03-051-0/+2
| | |
| | * Regenerate autotools stuff, grumble.Glenn Morris2011-03-053-432/+491
| | |
| | * * configure.in (FREETYPE_LIBS): Actually set it to something.Glenn Morris2011-03-052-5/+17
| | | | | | | | | | | | | | | | | | This was needed for linking a lucid toolkit build on a recent Debian testing system. Without this, it failed with: ftfont.o: undefined reference to symbol 'FT_New_Face'
| | * * lisp/bookmark.el:Juanma Barranquero2011-03-0611-11/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * lisp/desktop.el: * lisp/emacs-lock.el: * lisp/ps-print.el: * lisp/saveplace.el: * lisp/net/tramp-cache.el: * lisp/textmodes/reftex.el: * lisp/org/org-id.el: Don't set `kill-emacs-hook' on noninteractive sessions. Fixes: debbugs:8137
| | * gnus-uu.el (gnus-uu-decode-save): Typo fix.Katsumi Yamaoka2011-03-061-1/+1
| | |
| | * Fix last change.Chong Yidong2011-03-051-1/+1
| | |
| | * * nsterm.m (ns_draw_window_cursor): Fix typo in 2011-02-23 commit.Chong Yidong2011-03-052-2/+5
| | |
| | * Remove "tiny change" ChangeLog tags for Antoine Levitt, who signed papers.Chong Yidong2011-03-051-2/+2
| | |
| | * Replace many instances of read-file-name with read-directory-name.Antoine Levitt2011-03-0520-55/+93
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * lisp/files.el (delete-directory, copy-directory, list-directory): Use read-directory-name. * lisp/find-file.el (ff-find-the-other-file): * lisp/net/ange-ftp.el (ange-ftp-make-directory): * lisp/printing.el (pr-interactive-dir): * lisp/progmodes/ada-prj.el (ada-prj-load-directory): * lisp/progmodes/ebnf2ps.el (ebnf-print-directory) (ebnf-spool-directory, ebnf-eps-directory) (ebnf-syntax-directory): * lisp/shell.el (shell): * lisp/speedbar.el (speedbar-create-directory): * lisp/vc/emerge.el (emerge-merge-directories): * lisp/vc/vc-dir.el (vc-dir): * lisp/vc/vc.el (vc-create-tag, vc-retrieve-tag): Likewise. * lisp/gnus.el (gnus-interactive): Use read-directory-name. * lisp/gnus-uu.el (gnus-uu-decode-uu-and-save) (gnus-uu-decode-unshar-and-save, gnus-uu-decode-save) (gnus-uu-decode-binhex, gnus-uu-decode-yenc) (gnus-uu-decode-save-view, gnus-uu-decode-postscript-and-save): Likewise. * lisp/mh-funcs.el (mh-store-msg, mh-store-buffer): * lisp/mh-mime.el (mh-mime-save-parts): Use read-directory-name. * lisp/dired.el: Clarify comment.
| | * Fix to help-buffer to ensure it returns a valid buffer (Bug#8147).Chong Yidong2011-03-052-6/+14
| | | | | | | | | | | | | | | * lisp/help-mode.el (help-buffer): If we are to return the current buffer, signal an error if it's not in Help mode.
| | * * processes.texi (Synchronous Processes): Minor clarification (Bug#8149).Chong Yidong2011-03-052-13/+17
| | |
| | * Add ChangeLog bug ref.Glenn Morris2011-03-051-1/+1
| | |
| | * Handle git-style backup names in file-name-version-regexp (Bug#8159).Reuben Thomas2011-03-052-1/+8
| | | | | | | | | | | | | | | * files.el (file-name-version-regexp): Handle backup files of the form `foo.js.~HEAD~1~' (Bug#8159).
| | * ChangeLog fix.Glenn Morris2011-03-051-1/+1
| | |
| | * Move eshell's self-tests to the test/ directory.Glenn Morris2011-03-059-172/+199
| | | | | | | | | | | | | | | | | | | | | | | | | | | * lisp/eshell/esh-var.el: Don't require esh-test when compiling. * lisp/eshell/em-banner.el, lisp/eshell/esh-cmd.el, lisp/eshell/esh-mode.el: * lisp/eshell/esh-var.el, lisp/eshell/eshell.el: Move tests to esh-test. * lisp/eshell/esh-test.el: Move to ../../test/eshell.el * test/eshell.el: Move here from lisp/eshell/esh-test.el.
| | * Make save-some-buffers message more informative (Bug#8134).David Engster2011-03-052-5/+16
| | | | | | | | | | | | | | | * files.el (save-some-buffers): Report the names of buffers saved automatically due to buffer-save-without-query.
| | * * lisp/eshell/esh-proc.el (eshell-kill-process-function): Fix typo in previous.Glenn Morris2011-03-051-1/+1
| | |
| | * * lisp/net/rcirc.el: Add QuakeNet authentication support.Deniz Dogan2011-03-052-21/+42
| | | | | | | | | | | | | | | (rcirc-authinfo, rcirc-check-auth-status) (rcirc-authenticate): Support QuakeNet.
| | * * lisp/net/rcirc.el: Add functionality to authenticate before autojoining ↵Deniz Dogan2011-03-052-1/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | channels. (rcirc-authenticate-before-join): New option. (rcirc-authenticated-hook): New variable. (rcirc-connect): Make local variable rcirc-user-authenticated. (rcirc-handler-001): Respect rcirc-authenticate-before-join. (rcirc-check-auth-status, rcirc-join-channels-post-auth): New functions. (rcirc-handler-PRIVMSG, rcirc-handler-NOTICE): Call rcirc-check-auth-status.
| | * Merge changes made in Gnus trunk.Gnus developers2011-03-054-64/+129
| | | | | | | | | | | | | | | | | | | | | | | | | | | gnus-sum.el (gnus-update-read-articles): Fix typo. gnus.el (gnus-valid-select-methods): Mark nnimap as a backend that really have server-side marks. gnus-sum.el (gnus-propagate-marks): Change default back to nil again, since most backends do not usefully have server-side marks. (gnus-update-read-articles): Propagate marks to all backends that really have server-side marks. message.el (message-cite-reply-position, message-cite-style): New variables. (message-yank-original): Use the new citation styles.
| | * Add package name. Fix author email address.Michael Albinus2011-03-053-6/+25
| | | | | | | | | | | | | | | | | | | | | * net/soap-client.el (soap-namespace-put-link): Check if the target name is fully qualified -- use only the name part. (soap-parse-complex-type, soap-parse-sequence): Recognize xsd:all types, treated the same as xsd:sequence. (Bug#8166)