aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Document byte-to-string in Lisp manual.Chong Yidong2010-11-218-44/+54
| | | | | | | | | | | | | | | | * objects.texi (Symbol Type): * text.texi (Near Point): * help.texi (Help Functions): * functions.texi (Mapping Functions): Use string instead of char-to-string in examples. * nonascii.texi (Converting Representations): Document byte-to-string. * strings.texi (Creating Strings): Don't mention semi-obsolete function char-to-string. (String Conversion): Shorten discussion of semi-obsolete function string-to-char. Link to Converting Representations.
* bugtracker: Correct locations of bzr *.conf files.Eli Zaretskii2010-11-211-2/+2
|
* Backport fixes for Bug#5390 and Bug#5694 from trunk.Chong Yidong2010-11-212-24/+85
| | | | | | | | | | | | | | * progmodes/python.el: Add Ipython support (Bug#5390). (python-shell-prompt-alist) (python-shell-continuation-prompt-alist): New options. (python--set-prompt-regexp): New function. (inferior-python-mode, run-python, python-shell): Require ansi-color. Use python--set-prompt-regexp to set the comint prompt based on the Python interpreter. (python--prompt-regexp): New var. (python-check-comint-prompt) (python-comint-output-filter-function): Use it. (run-python): Use a pipe (Bug#5694).
* Make the sys.path remove in Python mode customizable (Bug#7454).Chong Yidong2010-11-213-17/+40
| | | | | * progmodes/python.el (run-python): Doc fix. (python-keep-current-directory-in-path): New var (Bug#7454).
* * maintaining.texi (Version Control Systems): Fix repeated sentence.Chong Yidong2010-11-212-4/+7
| | | | Suggested by Štěpán Němec.
* python.el comment.Glenn Morris2010-11-201-0/+1
|
* Document VC headers and other VC changes.Chong Yidong2010-11-204-193/+219
| | | | | | | | | | | | * maintaining.texi (Version Control): Say "commit", not "check in". (Version Control Systems): Simplify descriptions. (VCS Merging, VCS Changesets, VCS Repositories): New nodes, split from VCS Concepts. (VC Mode Line): Update example. (Old Revisions): Document revert-buffer for vc-diff. (Log Buffer): Promote to a subsection. Document header lines. * emacs.texi (Top): Update node listing.
* Prompt before running print commands.Chong Yidong2010-11-202-5/+21
| | | | | * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region): Prompt user before actually printing.
* Document some Emacs 23.3 changes in manuals.Chong Yidong2010-11-208-87/+97
| | | | | | | | | | | | | | | | | * doc/emacs/macos.texi (Mac / GNUstep Basics): Document ns-right-alternate-modifier. * doc/lispref/numbers.texi (Float Basics): Document float-e and float-pi. * doc/lispref/symbols.texi (Creating Symbols): Using unintern without an obarray arg is now obsolete. * doc/lispref/text.texi (Kill Functions, Kill Functions) (Low-Level Kill Ring, Low-Level Kill Ring): Remove obsolete YANK-HANDLER args. * doc/lispref/variables.texi (Defining Variables): Change "pi" example to "float-pi".
* Fix bug 7425.Jan Djärv2010-11-202-2/+34
| | | | | | | | | NOTE: When merging to trunk: xg_height_changed is xg_height_or_width_changed in trunk. * src/gtkutil.c (menubar_map_cb): New function. (xg_update_frame_menubar): Connect signal map to menubar_map_cb. Use 23 as menubar height if 0. (Bug#7425).
* * pop3.el (pop3-open-server): Read server greeting before starting TLS ↵Yuri Karaban2010-11-192-10/+16
| | | | negotiation.
* * comint.el (comint-kill-region): Fix last change.Stefan Monnier2010-11-171-1/+1
|
* Make the yank-handler argument obsolete.Stefan Monnier2010-11-174-16/+12
| | | | | * simple.el (kill-new, kill-append, kill-region): * comint.el (comint-kill-region): Make the yank-handler argument obsolete.
* * emacs-lisp/smie.el (smie-bnf-classify): Signal errors for tokensStefan Monnier2010-11-172-41/+63
| | | | | | | | | that are both openers (resp. closers) and something else. (smie-grammar): Loosen definition of valid values. (smie-next-sexp, smie-down-list, smie-blink-matching-open) (smie-indent--parent, smie-rule-parent, smie-indent-keyword) (smie-indent-after-keyword): Adjust users. (smie-indent-keyword): Don't indent empty lines.
* * vc-hg.el (vc-hg-program): New var.Stefan Monnier2010-11-172-4/+14
| | | | | Suggested by Norman Gray <[email protected]>. (vc-hg-state, vc-hg-working-revision, vc-hg-command): Use it.
* autoload.el fix for bug#7414.Glenn Morris2010-11-162-5/+10
| | | | | * lisp/emacs-lisp/autoload.el (autoload-find-destination): The function coding-system-eol-type may return non-numeric values.
* * lisp/server.el (server-force-stop): Ensure the server is stopped (Bug#7409).Ulrich Mueller2010-11-162-1/+5
|
* Fix link error on Fedora 14: newer GConf don't use g_type_*.Jan D2010-11-141-0/+6
| | | | Forgot to save ChangeLog for previous change.
* Fix link error on Fedora 14: newer GConf don't use g_type_*.Jan D2010-11-144-238/+236
| | | | | | | | * configure.in (HAVE_GCONF): Check for g_type_init if GConf is found. * src/config.in (HAVE_G_TYPE_INIT): New symbol. * src/xsettings.c (init_gconf): Check HAVE_G_TYPE_INIT.
* Document 2010-05-10T02:20:[email protected] as an incompatible change in ↵Eli Zaretskii2010-11-131-0/+4
| | | | posn-col-row.
* subr.el (posn-col-row): Pay attention to header line. (Bug#7390)Eli Zaretskii2010-11-132-1/+6
|
* Fix picture-mouse-set-point calculation (Bug#7390).Chong Yidong2010-11-132-9/+29
| | | | | | * lisp/textmodes/picture.el (picture-mouse-set-point): Don't use posn-col-row; explicitly compute the motion based on the posn at the window-start (Bug#7390).
* Backport fix for Bug#6170 from trunk.Dan Nicolaescu2010-11-133-18/+32
| | | | | | Fix alloca definition when using gcc on non-gnu systems. * configure.in: Use the code sequence indicated by "info autoconf" for alloca (bug#6170).
* * net/tramp.el (tramp-remote-coding-commands): Add an alternativeMichael Albinus2010-11-132-1/+12
| | | | | | | | using "base64 -d -i". This is needed for older base64 versions from GNU coreutils. Reported by Klaus Reichl <[email protected]>. This must not be merged with the trunk.
* * lisp/novice.el (disabled-command-function): Fix 2009-11-15 change. (Bug#7384)Glenn Morris2010-11-132-6/+10
|
* customize.texi (Composite Types): Lower-case index entry.Eli Zaretskii2010-11-122-1/+3
|
* The `fixes' attribute does show in `bzr log'.Eli Zaretskii2010-11-121-4/+4
|
* Fix bug #7346: document load-file-name.Eli Zaretskii2010-11-124-0/+24
| | | | | src/lread.c (Fload): Mention `load-in-progress' and `load-file-name'. doc/lispref/loading.texi (How Programs Do Loading): Document `load-file-name'.
* Expand and clarify the description of bugtracker setting for bzr.Eli Zaretskii2010-11-121-1/+24
|
* diary-iso-date-forms fix for bug#7377.Glenn Morris2010-11-112-6/+12
| | | | | * lisp/calendar/calendar.el (diary-iso-date-forms): Make elements mutually exclusive.
* * lisp/emacs-lisp/smie.el (smie-prec2->grammar): Obey equality constraintsStefan Monnier2010-11-112-5/+45
| | | | when filling the remaining "unconstrained" values.
* * lisp/files.el (safe-local-variable-p): Gracefully handle errors.Stefan Monnier2010-11-113-14/+13
| | | | | * lisp/emacs-lisp/bytecomp.el (byte-compile-warnings): Simplify the safety predicate.
* * lisp/emacs-lisp/smie.el (smie-rule-parent, smie-indent--rule):Stefan Monnier2010-11-112-16/+59
| | | | | | | Use smie-indent-virtual when indenting relative to an opener. (smie-rule-separator): Use smie-rule-parent. (smie-indent-keyword): Consult rules, even for openers at bol. (smie-indent-comment-close): Try to align closer's content.
* Fix some ls-lisp oddness.Glenn Morris2010-11-102-3/+13
| | | | * lisp/ls-lisp.el (ls-lisp-dired-ignore-case): Make it an obsolete alias.
* Document non-support for MSVC versions later than 8.0.Eli Zaretskii2010-11-101-3/+3
|
* * doc/misc/edt.texi: Remove information about Emacs 19.Glenn Morris2010-11-102-14/+11
|
* * doc/lispref/text.texi (Kill Functions, Low-Level Kill Ring): Small fixes.Glenn Morris2010-11-102-9/+11
|
* Add fall-back definition of _CS_DARWIN_USER_TEMP_DIR (fix last failed check-in).YAMAMOTO Mitsuharu2010-11-101-0/+3
|
* Add fall-back definition of _CS_DARWIN_USER_TEMP_DIR.YAMAMOTO Mitsuharu2010-11-101-0/+5
|
* * lisp/printing.el (pr-menu-bind): Doc fix.Glenn Morris2010-11-092-9/+5
|
* * lisp/speedbar.el (speedbar-toggle-images): Doc fix.Glenn Morris2010-11-092-2/+3
|
* mouse-sel.el comments.Glenn Morris2010-11-091-4/+3
|
* * lisp/progmodes/python.el (python-shell): Doc fix.Glenn Morris2010-11-092-2/+3
|
* wid-edit doc fixes.Glenn Morris2010-11-092-5/+8
| | | | | * lisp/wid-edit.el (widget-field-use-before-change) (widget-use-overlay-change): Doc fixes.
* Comments related to `bzr commit --fixes'.Glenn Morris2010-11-092-3/+6
|
* Fix 2010-05-05T22:14:[email protected].Eli Zaretskii2010-11-093-1/+19
| | | | | | | | | keyboard.c (kbd_buffer_nr_stored): Define only ifdef subprocesses. (kbd_buffer_store_event_hold, kbd_buffer_get_event) (tty_read_avail_input): Call kbd_buffer_nr_stored only ifdef subprocesses. Use buffer_free only ifdef subprocesses. process.c (init_process) [subprocesses]: Init kbd_is_on_hold in the subprocesses version, not in the non-subprocesses one.
* Fix 2010-05-06T02:53:[email protected].Eli Zaretskii2010-11-092-1/+3
| | | | src/Makefile.in: Don't use ## comment, it breaks the MSDOS build.
* xfns.c (x_real_positions): Fix declaration-after-statement problem.Eli Zaretskii2010-11-092-2/+6
|
* * lisp/progmodes/tcl.el (tcl-hairy-scan-for-comment): Doc fix.Glenn Morris2010-11-082-9/+5
|
* ChangeLog fix.Glenn Morris2010-11-081-1/+1
|