aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update Command Loop chapter of Lisp manual.Chong Yidong2012-02-113-103/+114
| | | | | | | | | | | | | * doc/emacs/commands.texi (Command Overview): Mention read-key. (Using Interactive, Interactive Call): Minor clarifications. (Function Keys, Click Events): Avoid "input stream" terminology. (Click Events): Add xref to Window Sizes and Accessing Mouse. Clarify column and row components. (Accessing Mouse): Add xref to Click Events. Minor fixes. (Special Events): Copyedits. * doc/emacs/streams.texi (Input Streams): De-document get-file-char. (Output Variables): Don't refer to old backquote syntax.
* Fix bug #10783 with w32 doc string of x-selection-exists-p.Eli Zaretskii2012-02-112-10/+16
| | | | | src/w32select.c (Fx_selection_exists_p): Sync doc string and argument list with xselect.c.
* Sync MS-DOS selection-related doc strings with X doc strings.Eli Zaretskii2012-02-114-20/+51
| | | | | | | | | lisp/term/pc-win.el (x-select-text, x-selection-owner-p) (x-own-selection-internal, x-disown-selection-internal) (x-get-selection-internal): Sync doc strings and argument lists with xselect.c, common-win.el and x-win.el. (Bug#10783) src/w16select.c (Fx_selection_exists_p): Sync doc string with xselect.c. (Bug#10783)
* Update Debugging chapter of Lisp manual.Chong Yidong2012-02-116-128/+123
| | | | | | | | | | | | * doc/emacs/debugging.texi (Debugging): Copyedits. Describe testcover, ERT. (Error Debugging): Note that debug-ignored-errors overrides list values of debug-on-error too. Add xref to Signaling Errors. Note that debug-on-signal is not customizable. Mention condition-case-unless-debug. (Compilation Errors): Node deleted. * doc/emacs/compile.texi (Compiler Errors): Move a paragraph here from deleted node Compilation Errors.
* Fix infinite loop in python-end-of-statementLeo Liu2012-02-112-3/+9
| | | | http://debbugs.gnu.org/10788
* mule-cmds triviaGlenn Morris2012-02-102-3/+13
| | | | | * lisp/international/mule-cmds.el (unify-8859-on-encoding-mode) (unify-8859-on-decoding-mode): Properly mark as obsolete.
* Prompt in a more logical fashion when sending bug reportsLars Ingebrigtsen2012-02-105-54/+81
| | | | | | | | | | | * gnus/message.el (message-default-send-mail-function): Made into own function for reuse by emacsbug.el. * mail/emacsbug.el (report-emacs-bug-hook): Query the user first about SMTP before checking the From header. * mail/sendmail.el (sendmail-query-user-about-smtp): Refacored out into own function for reuse by emacsbug.el.
* Fix typo in last checkin.Lars Ingebrigtsen2012-02-101-1/+1
|
* Cookie/redirection URL fixupLars Ingebrigtsen2012-02-102-1/+7
| | | | | (url-http-parse-headers): When redirecting, pass on the `inhibit-cookie' parameter.
* Fix previous URL doc changeGlenn Morris2012-02-104-9/+14
| | | | | | | | | * lisp/url/url-queue.el (url-queue-retrieve): Fic previous doc fix. * doc/misc/url.texi (Retrieving URLs): Update url-retrieve arguments. Mention url-queue-retrieve. * etc/NEWS: Related edit.
* Restore NEWS markupGlenn Morris2012-02-101-0/+1
|
* Rename condition-case-no-debug to condition-case-unless-debugLeo Liu2012-02-1011-16/+44
|
* Update Compilation and Advice chapters in Lisp manual.Chong Yidong2012-02-109-232/+142
| | | | | | | | | | | | | | | | | | | | * doc/lispref/advice.texi (Defining Advice): Clarify ad-unadvise. (Activation of Advice): Specifying the ACTIVATE flag in defadvice is not abnormal. (Advising Primitives): Node deleted; ad-define-subr-args has been removed. * doc/lispref/compile.texi (Speed of Byte-Code): Use float-time in example. (Compilation Functions): Note that the log uses Compilation mode. Don't discuss the contents of byte-code function object here. (Compilation Functions): De-document internal function byte-code. (Docs and Compilation): Minor clarifications. * doc/lispref/objects.texi (Byte-Code Type): Add xref to Byte-Code Function Objects. * lisp/emacs-lisp/advice.el: Update commentary to reflect deletion of ad-define-subr-args
* * url-http.el (url-http-clean-headers): Return the number ofAndreas Schwab2012-02-102-5/+15
| | | | | | removed characters. (url-http-wait-for-headers-change-function): Adjust end position after cleaning the headers. (Bug#10768)
* Document secure-hashGlenn Morris2012-02-106-7/+26
| | | | | | | | * doc/lispref/text.texi (Checksum/Hash): Rename node from MD5 Checksum. Mention secure-hash. * doc/lispref/elisp.texi, doc/lispref/vol1.texi, doc/lispref/vol2.texi: Update menu entry. * etc/NEWS: Related markup.
* * src/fns.c (Fsecure_hash): Doc fix.Glenn Morris2012-02-103-10/+16
| | | | * etc/NEWS: Related edit.
* Add missing defcustom :version tagsGlenn Morris2012-02-103-8/+18
| | | | | | * lisp/textmodes/bibtex.el: Add missing :version tags for new/changed defcustoms. * etc/NEWS: Related edits.
* Doc fixes for remote-file-name-inhibit-cacheGlenn Morris2012-02-105-34/+35
| | | | | | | * doc/lispref/files.texi (Magic File Names): Tweak remote-file-name-inhibit-cache entry. * lisp/files.el (remote-file-name-inhibit-cache): Doc fixes. * etc/NEWS: Edits.
* Update Loading chapter of Emacs manual.Chong Yidong2012-02-104-111/+92
| | | | | | | | | * doc/emacs/loading.texi (Loading): Don't emphasize "library" terminology. (Library Search): load-path is not a user option. Mention role of -L option and packages. Improve examples. (Loading Non-ASCII): Don't mention unibyte Emacs, which is obsolete. (Autoload): Minor clarifications.
* * doc/emacs/mini.texi (Minibuffer Edit): Mention minibuffer-inactive-mode.Glenn Morris2012-02-093-2/+11
| | | | * etc/NEWS: Related edit.
* Document url-queue-retrieveGlenn Morris2012-02-095-7/+31
| | | | | | | | | * doc/misc/url.texi (Retrieving URLs): Update url-retrieve arguments. Mention url-queue-retrieve. * lisp/url/url-queue.el (url-queue-retrieve): Doc fix. * etc/NEWS: Edits.
* NEWS edits for electric stuffGlenn Morris2012-02-091-0/+6
|
* * doc/emacs/programs.texi (Misc for Programs): Mention electric-layout-mode.Glenn Morris2012-02-092-2/+12
|
* * doc/lispref/modes.texi (Basic Major Modes): Mention tabulated-list-mode.Glenn Morris2012-02-093-0/+19
| | | | * etc/NEWS: Related markup.
* lisp/cedet/ede/auto.el: Add declarations.Juanma Barranquero2012-02-102-2/+10
|
* lisp/gnus/gnus.el: Avoid byte-compiler warning.Juanma Barranquero2012-02-102-8/+13
| | | | | (gnus-method-ephemeral-p): Move after declaration of defsubst `gnus-sloppily-equal-method-parameters' to avoid a warning.
* gnus-msg.el (gnus-msg-mail): Use `message-mail' if Gnus isn't running.Lars Ingebrigtsen2012-02-092-13/+20
|
* Get the MAIL FROM from the From: header if no domain is configuredLars Ingebrigtsen2012-02-092-5/+29
| | | | | | * mail/smtpmail.el (smtpmail-user-mail-address): New function. (smtpmail-via-smtp): Use it, or fall back on the From address. (smtpmail-send-it): Ditto.
* * lisp/emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):Stefan Monnier2012-02-092-42/+40
| | | | | | | | | Don't fallback on byte-compile-defvar. Optimize (defvar foo) away. (byte-compile-tmp-var): New const. (byte-compile-defvar): Use it to minimize .elc size. Just use `defvar' rather than simulate it. Fixes: debbugs:10761
* * lisp/files.el (rename-uniquely): Doc fix. (Bug#3806)Glenn Morris2012-02-092-1/+9
|
* NEWS edit for cc-guessGlenn Morris2012-02-091-3/+3
|
* Add some custom :version tagsGlenn Morris2012-02-082-0/+5
| | | | | * lisp/progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max): Add :version tags.
* Merge from emacs-23; up to 2010-06-29T18:17:[email protected].Glenn Morris2012-02-082-3/+7
|\
| * coding.c (produce_chars): Fix updating of src_end (Bug#10701).Kenichi Handa2012-02-082-3/+7
| |\
| * | * admin/nt/README.W32: Backported fixed url for image libraries fromChristoph Scholtes2012-02-052-4/+8
| |/ | | | | | | | | trunk. Removed explicit reference to version of libXpm included in binary distributions for maintenance purposes.
| * * src/coding.c (encode_designation_at_bol): Change return value to EMACS_INT.HIROSHI OOTA2012-01-252-3/+8
| |
| * Bump version number to 23.4Chong Yidong2012-01-1943-38/+130
| |
| * Fix usage of unitialized local var (backport from trunk)Paul Eggert2012-01-192-1/+6
| | | | | | | | | | * src/coding.c (encode_designation_at_bol): Don't use uninitialized local variable (Bug#9318).
| * Pay attention to buffer relocation on encoding (Bug#9318; backport from trunk).Kenichi Handa2012-01-192-40/+157
| | | | | | | | Backport of 2011-12-05T06:39:[email protected] from trunk.
| * Do not use ranges in FSF copyright years in emacs-23 (do not merge to trunk)Glenn Morris2012-01-1810-10/+20
| |
* | * doc/misc/sem-user.texi (Semantic mode user commands): Typo fix.Glenn Morris2012-02-082-1/+3
| |
* | Stylistic fix for previous changeGlenn Morris2012-02-081-1/+1
| |
* | * lisp/progmodes/compile.el (compilation-filter-start): Doc fix.Glenn Morris2012-02-083-6/+7
| | | | | | | | * etc/NEWS: Related edit.
* | Doc fixes for compile.elGlenn Morris2012-02-083-2/+12
| | | | | | | | | | | | * lisp/progmodes/compile.el (compilation-first-column) (compilation-error-screen-columns): Doc fixes. * etc/NEWS: Related markup.
* | NEWS markup - commands.texi already updated for this changeGlenn Morris2012-02-081-0/+1
| |
* | Small NEWS edit for compose-mailGlenn Morris2012-02-081-6/+7
| |
* | Small NEWS fixes for dbusGlenn Morris2012-02-081-6/+5
| |
* | * doc/misc/info.texi (Create Info buffer): Mention info-display-manual.Glenn Morris2012-02-083-7/+16
| | | | | | | | * etc/NEWS: Related edits.
* | Tiny buffers.texi fixGlenn Morris2012-02-082-3/+6
| | | | | | | | | | * doc/emacs/buffers.texi (Misc Buffer): M-x info does not seem to require a buffer switch after M-x rename-uniquely.
* | Small VC doc fixesGlenn Morris2012-02-084-16/+19
| | | | | | | | | | | | * lisp/vc/log-view.el (log-view-toggle-entry-display): * lisp/vc/vc.el (vc-merge, vc-pull): Doc fixes. * etc/NEWS: Condense a few VC entries.