1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-21 18:23:59 +00:00
Commit Graph

1188 Commits

Author SHA1 Message Date
Kenichi Handa
81b14dd29d HELLO: Adjust Burmese for Unicode 5.2 encoding. 2010-04-23 11:14:40 +09:00
Stefan Monnier
6e104790e7 Merge from emacs-23 2010-04-19 11:07:52 -04:00
Stefan Monnier
b9f2036404 (Mathematics): Prefer Unicode charset. 2010-04-18 17:35:20 -04:00
Francesc Rocher
46ac1194bf Add a new entry for QWE 2010-04-04 12:42:05 +02:00
Stefan Monnier
857387516c Merge from emacs-23 branch 2010-03-30 22:37:57 -04:00
Eli Zaretskii
a7b0282034 Initial support for bidirectional editing.
Makefile.in (obj): Include bidi.o.
 (bidi.o): New target.
 makefile.w32-in (OBJ1): Add $(BLD)/bidi.$(O).
 ($(BLD)/bidi.$(O)): New target.
 bidi.c: New file.
 buffer.h (struct buffer): New members bidi_display_reordering
 and bidi_paragraph_direction.
 buffer.c (init_buffer_once): Initialize bidi_display_reordering
 and bidi_paragraph_direction.
 (syms_of_buffer): Declare Lisp variables bidi-display-reordering
 and bidi-paragraph-direction.
 (Fbuffer_swap_text): Swap the values of
 bidi_display_reordering and bidi_paragraph_direction.
 dispextern.h (BIDI_MAXLEVEL, BIDI_AT_BASE_LEVEL): New macros.
 (bidi_type_t, bidi_dir_t): New types.
 (bidi_saved_info, bidi_stack, bidi_it): New structures.
 (struct it): New members bidi_p, bidi_it, paragraph_embedding,
 prev_stop, base_level_stop, and eol_pos.
 (bidi_init_it, bidi_get_next_char_visually): New prototypes.
 (IT_STACK_SIZE): Enlarge to 5.
 (struct glyph_row): New member reversed_p.
 <string_buffer_position>: Update prototype.
 (PRODUCE_GLYPHS): Set the reversed_p flag in the iterator's
 glyph_row if bidi_it.paragraph_dir == R2L.
 (struct glyph): New members resolved_level and bidi_type.
 dispnew.c (direct_output_forward_char): Give up if we need bidi
 processing or buffer's direction is right-to-left.
 (prepare_desired_row): Preserve the reversed_p flag.
 (row_equal_p): Compare the reversed_p attributes as well.
 xdisp.c (init_iterator): Initialize it->bidi_p.  Call
 bidi_init_it and set it->paragraph_embedding from the current
 buffer's value of bidi_paragraph_direction.
 (reseat_1): Initialize bidi_it.first_elt.
 (set_iterator_to_next, next_element_from_buffer): Use the value of
 paragraph_embedding to determine the paragraph direction.
 (set_iterator_to_next): Under bidi reordering, call
 bidi_get_next_char_visually.  Call bidi_paragraph_init if the
 new_paragraph flag is set in the bidi iterator.
 (next_element_from_buffer): If bidi_it.first_elt is set,
 initialize paragraph direction and find the first character to
 display in the visual order.  If reseated to a middle of a line,
 prime the bidi iterator starting at the line's beginning.  Handle
 the situation where we overstepped stop_charpos due to
 non-linearity of the bidi iteration.  Likewise for when we back up
 beyond the previous stop_charpos.  When moving across stop_charpos,
 record it in prev_stop.
 (display_line): Set row->end and it->start for the next row to the
 next character in logical order.  Always extend reversed_p rows to
 the end of line, even if they end at ZV.  Copy the reversed_p flag
 to the next glyph row.  Keep calling set_cursor_from_row for
 bidi-reordered rows even if we already have a possible candidate
 for cursor position.  Set row_end after all the row's glyphs have
 been produced, by looping over the glyphs.  Record the position
 after EOL in it->eol_pos, and use it to set end_pos of the last
 row produced for a continued line.
 <Qright_to_left, Qleft_to_right>: New variables.
 (syms_of_xdisp): Initialize and staticpro them.
 (string_buffer_position_lim): New function.
 (string_buffer_position): Most of code moved to
 string_buffer_position_lim.  Last argument and return value are
 now EMACS_INT; all callers changed.
 (set_cursor_from_row): Rewritten to support bidirectional text and
 reversed glyph rows.
 (text_outside_line_unchanged_p, try_window_id): Disable
 optimizations if we are reordering bidirectional text and the
 paragraph direction can be affected by the change.
 (append_glyph, append_composite_glyph)
 (produce_image_glyph, append_stretch_glyph): Set the
 resolved_level and bidi_type members of each glyph.
 (append_glyph): If the glyph row is reversed, prepend the glyph
 rather than appending it.
 (handle_stop_backwards): New function.
 (reseat_1, pop_it, push_it): Set prev_stop and base_level_stop.
 (reseat): call handle_stop_backwards to recompute prev_stop and
 base_level_stop for the new position.
 (handle_invisible_prop): Under bidi iteration, skip invisible text
 using bidi_get_next_char_visually.  If we are `reseat'ed, init the
 paragraph direction.  Update IT->prev_stop after skipping
 invisible text.
 (move_it_in_display_line_to): New variables prev_method
 and prev_pos.  Compare for strict equality in
 BUFFER_POS_REACHED_P.
 (try_cursor_movement): Examine all the candidate rows that occlude
 point, to return the best match.  If rows are bidi-reordered
 and point moved backwards, back up to the row that is not a
 continuation line, and start looking for a suitable row from
 there.
 term.c (append_glyph): Reverse glyphs by pre-pending them,
 rather than appending, if the glyph_row's reversed_p flag is set.
 Set the resolved_level and bidi_type members of each glyph.
 .gdbinit (pbiditype): New command.
 (pgx): Use it to display bidi level and type of the glyph.
 (pitx): Display some bidi information about the iterator.
 (prowlims, pmtxrows): New commands.
 files.el: Make bidi-display-reordering safe variable for boolean
 values.
 mule.texi (International): Mention support of bidirectional editing.
 (Bidirectional Editing): New section.
 HELLO: Reorder Arabic and Hebrew into logical order, and
 insert RLM before the opening paren, to make the display more
 reasonable.  Add setting for bidi-display-reordering in the local
 variables section.
 NEWS: Mention initial support for bidirectional editing.
2010-03-30 05:13:07 -04:00
Chong Yidong
727be77379 Fix for Bug#5790.
* images/icons/hicolor/scalable/apps/emacs.svg: Put preamble after svg tag (Bug#5790).
2010-03-28 15:09:21 -04:00
Eli Zaretskii
5660c0f5b8 Document problems on MS-Windows with incompatible regex.h headers.
PROBLEMS: Mention problems on MS-Windows with incompatible
 regex.h headers.
2010-03-27 15:52:55 +03:00
Stefan Monnier
e867cb5d30 Merge from `emacs-23'. 2010-03-24 14:02:56 -04:00
Katsumi Yamaoka
1888398e25 Synch with Gnus trunk
=====================
2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>

 * gnus/gnus-setup.ast: Add finish links to the top nodes.

 * gnus/news-server.ast: Add some trivial validation.
2010-03-23 07:29:49 +00:00
Francesc Rocher
3af45ae1a6 Remove CEDET entry in MORE.STUFF. 2010-03-15 11:45:03 +01:00
Michael Albinus
7725ebb794 * etc/NEWS: Add secrets.el.
* lisp/Makefile.in (ELCFILES): Add net/secrets.elc.
* lisp/net/secrets.el: New file.
2010-03-13 21:33:54 +01:00
Chong Yidong
e3c5dd1188 Update Custom arrow images.
* images/custom/down.xpm, images/custom/right.xpm: Update images
to increase contrast on bright backgrounds.
2010-03-12 16:42:05 -05:00
Chong Yidong
288f9fc069 Bump version to 24.0.50. 2010-03-10 10:17:13 -05:00
Glenn Morris
d40a757070 Update some cedet template copyrights to GPLv3+.
* etc/srecode/default.srt (COPYRIGHT):
* lisp/cedet/semantic/grammar.el (semantic-grammar-header-template):
Update template copyright to GPLv3+.
2010-03-05 19:06:37 -08:00
Glenn Morris
324f60ef7b Fix orgcard.tex pdf landscape format.
* refcards/orgcard.tex: Use pdflayout.sty.
* refcards/Makefile (orgcard.pdf): Special rule no longer needed.
2010-03-04 19:01:38 -08:00
Glenn Morris
3bb1fc91b6 Small tweaks to etc/refcards/Makefile rules for PDFs.
* refcards/Makefile: For cs- and sk-, use pdfcsplain if available.
(pl-refcard.pdf): Let presence of pdfmex be another test for the
required TeX files.  Pass explicit output-format to tex command.
(orgcard.pdf): Use ps2pdf, since pdftex tends to produce a
portrait layout rather than the desired landscape.
2010-03-01 19:47:19 -08:00
Glenn Morris
28a138be25 * refcards/pl-refcard.tex: Double forward-slashes in URL for Mex. 2010-03-01 01:06:49 -08:00
Glenn Morris
f972873383 * refcards/de-refcard.tex: Fix paren typo. 2010-03-01 00:56:58 -08:00
Glenn Morris
2509f6549d Rename a command in ru-refcard.tex.
* refcards/ru-refcard.tex: Rename \year command to \cyear, since
the former seems to be already used in some TeX installations.
2010-02-28 23:13:57 -08:00
Glenn Morris
22adfe0875 Fix some ChangeLog typos. 2010-02-28 18:40:56 -08:00
Glenn Morris
09e9800385 Update short copyright year in refcard tex files.
* refcards/calccard.tex, refcards/cs-dired-ref.tex:
* refcards/cs-refcard.tex, refcards/cs-survival.tex:
* refcards/de-refcard.tex, refcards/dired-ref.tex:
* refcards/fr-dired-ref.tex, refcards/fr-refcard.tex:
* refcards/fr-survival.tex, refcards/orgcard.pdf:
* refcards/orgcard.tex, refcards/pl-refcard.tex:
* refcards/pt-br-refcard.tex, refcards/refcard.tex:
* refcards/ru-refcard.tex, refcards/sk-dired-ref.tex:
* refcards/sk-refcard.tex, refcards/sk-survival.tex:
* refcards/survival.tex, refcards/vipcard.tex:
* refcards/viperCard.tex: Update short copyright year to 2010.
2010-02-28 18:36:15 -08:00
Glenn Morris
183c7ef959 Minor TUTORIAL fixes.
* tutorials/TUTORIAL.es, tutorials/TUTORIAL.pt_BR:
Fix some keybinding typos.
2010-02-25 20:35:34 -08:00
Chong Yidong
6fd060bfb8 Small edit to custom images for better text alignment.
* etc/images/custom/down-pushed.xpm, etc/images/custom/down.xpm:
* etc/images/custom/right-pushed.xpm:
* etc/images/custom/right-pushed.xpm: Increase height by four
pixels, to improve text alignment.
2010-02-16 09:28:41 -05:00
Mario Lang
045b9da787 Mario Lang <mlang@delysid.org>: Remove some duplicated words.
* cedet/ede/cpp-root.el (ede-cpp-root-project):
* cedet/ede/files.el (ede-expand-filename):
* cedet/ede/simple.el (ede-simple-project):
* cedet/semantic/complete.el (semantic-complete-read-tag-engine)
(semantic-complete-inline-tag-engine):
* cedet/semantic/db-el.el (semanticdb-equivalent-mode):
* cedet/semantic/db-global.el (semanticdb-equivalent-mode):
* cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
* cedet/semantic/db.el (semanticdb-equivalent-mode):
* cedet/semantic/decorate/include.el (semantic-decoration-unknown-include-describe):
* cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
* emacs-lisp/chart.el (chart-translate-namezone):
* textmodes/artist.el (artist-compute-popup-menu-table):
Remove duplicated words in doc-strings.

* srecode/doc-cpp.srt, srecode/doc-default.srt:
* srecode/doc-java.srt: Remove duplicated words.

* ede.texi (ede-target):
* org.texi (Refiling notes): Remove duplicated words.
2010-01-15 18:51:50 -08:00
Glenn Morris
c30667d47d Add log entry for new gdb icons. 2010-01-14 19:49:47 -08:00
Juanma Barranquero
c2dd191063 Fix typos in template docstrings. 2010-01-14 19:45:02 +01:00
Juanma Barranquero
b643362c6c Fix typos in ChangeLogs and NEWS files. 2010-01-14 19:29:36 +01:00
Kenichi Handa
35fb32880c from trunk 2010-01-14 12:54:04 +09:00
Kenichi Handa
d9a7c14092 Make auto-composition work on all buffers even if they are fundamental mode. 2010-01-14 12:44:36 +09:00
Glenn Morris
114f9c9679 Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
Glenn Morris
893db5bcf0 Replace emacs-pretest-bug with bug-gnu-emacs mailing list.
See http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00758.html

* emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
bug-gnu-emacs rather than emacs-pretest-bug.

* mail/emacsbug.el (report-emacs-bug-pretest-address): Set
it to bug-gnu-emacs rather than emacs-pretest-bug.

* CONTRIBUTE, NEWS: Use bug-gnu-emacs rather than emacs-pretest-bug
for bug reports for development versions.

* trouble.texi (Checklist): Use bug-gnu-emacs rather than
emacs-pretest-bug for bug reports for development versions.

* emacs-pretesters, make-announcement: Use bug-gnu-emacs rather
than emacs-pretest-bug for bug reports for development versions.

* INSTALL.BZR, README: Use bug-gnu-emacs rather than emacs-pretest-bug
for bug reports for development versions.
2010-01-11 21:11:05 -08:00
Juanma Barranquero
da14b7caec etc/NEWS: Fix typos. 2010-01-02 02:03:11 +01:00
Juanma Barranquero
5ce6e4f452 Fix typos in ChangeLogs. 2009-12-29 02:57:40 +01:00
Glenn Morris
d40084d1df (Coding Standards): Update URL.
(Getting the Source Code): Other VCSs are available.
2009-12-15 03:13:46 +00:00
Glenn Morris
8a0d3b3fa1 Update some URLs. 2009-12-15 03:12:44 +00:00
Glenn Morris
5b94cf5f51 Remove comments about edt-user.doc. No longer applies now file has
been removed and split into two pieces.
2009-12-15 03:11:56 +00:00
Michael Albinus
9bbd0cac1b * NEWS: Point to the external counterparts of su and sudo. 2009-12-09 10:37:30 +00:00
Glenn Morris
eb7799da34 Add missing entry. 2009-12-01 07:47:11 +00:00
Michael Albinus
59ffcfc485 * NEWS: New functions eshell/su and eshell/sudo. 2009-11-27 16:38:57 +00:00
Kevin Ryde
1d5aaabdb3 * MORE.STUFF: emacswiki ElispArea url "wiki.pl" -> "wiki".
Aubrey Jaffer's texinfo R5RS moved to
http://groups.csail.mit.edu/mac/ftpdir/scm/r5rs.info.tar.gz
(per http://people.csail.mit.edu/jaffer/Scheme.html).
2009-11-26 22:35:47 +00:00
Jan Djärv
6a7ce3a2b0 Mention Metacity hang on Emacs resize. 2009-11-26 07:15:33 +00:00
Chong Yidong
5c3ef352f1 * PROBLEMS: Remove fixed rebasing problem. 2009-11-20 21:46:28 +00:00
Chong Yidong
abbdc6a07b * PROBLEMS (http): Add workaround for Cygwin crash. 2009-11-20 21:40:00 +00:00
Jan Djärv
637fa98808 Handle system default font and changing font parameters.
* xterm.h (struct x_display_info): Add atoms and Window for xsettings.

* xterm.c (handle_one_xevent): Call xft_settings_event for
ClientMessage, PropertyNotify and DestroyNotify.
(x_term_init): If we have XFT, get DPI from Xft.dpi.
Call xsettings_initialize.

* xftfont.c (xftfont_fix_match): New function.
(xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
Call xftfont_fix_match after XftFontMatch.

* xfont.c (xfont_driver): Initialize all members.

* xfns.c (x_default_font_parameter): Try font from Ffont_get_system_font.
Do not get font from x_default_parameter if we got one from
Ffont_get_system_font.
(Fx_select_font): Get the defaut font name from :name of FRAME_FONT (f).

* w32font.c (w32font_driver): Initialize all members.

* termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.

* lisp.h: Declare syms_of_xsettings.

* keyboard.c (kbd_buffer_get_event, make_lispy_event): Handle
CONFIG_CHANGED_EVENT.

* ftfont.c (ftfont_filter_properties): New function.

* frame.c (x_set_font): Remove unused variable lval.

* font.h (struct font_driver): filter_properties is new.

* font.c (font_put_extra): Don't return if val is nil, it means
boolean option is off.
(font_parse_fcname): Collect all extra properties in extra_props
and call filter_properties for all drivers with extra_props and
font as parameter.
(font_open_entity): Do not use cache, it does not pick up new fontconfig
settings like hinting.
(font_load_for_lface): If spec had a name in it, store it in entity.

* emacs.c (main): Call syms_of_xsettings

* config.in: HAVE_GCONF is new.

* Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
xsettings.o is new.

* menu-bar.el: Put "Use system font" in Option-menu.

* loadup.el: If feature system-font-setting or font-render-setting is
there, load font-setting.

* Makefile.in (ELCFILES): font-settings.el is new.
* font-setting.el: New file.

* NEWS: Mention dynamic font changes (font-use-system-font).

* configure.in: New option: --with(out)-gconf.
Set HAVE_GCONF if we find gconf.
2009-11-17 08:21:23 +00:00
Carsten Dominik
17673adf80 2009-11-15 Carsten Dominik <carsten.dominik@gmail.com>
* org.texi (Speed keys): New section.
2009-11-15 07:16:21 +00:00
Carsten Dominik
a351880d14 2009-11-13 Carsten Dominik <carsten.dominik@gmail.com>
* org.texi: Removed @Ie, @ie, @Eg, @eg macros.

2009-11-13  James TD Smith  <ahktenzero@mohorovi.cc>

	* org.texi (Column attributes): Add the new age summary operators.
	Also, mention the fact you can only use one summary operator per
	property.

2009-11-13  John Wiegley  <johnw@newartisans.com>

	* org.texi (Tracking your habits): Added a new section in the
	manual about how to track habits.
	(Resolving idle time): Added a section on how idle and
	dangling clocks are resolved.

2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>

	* org.texi (Agenda commands): Document the new `i' command.
	(Inserting deadline/schedule): Document logging changes
	of scheduling and deadline times stamps.
	(In-buffer settings): Document the in-buffer keywords for logging
	changes of scheduling and deadline times stamps.
	(Structure editing, Plain lists): Document indentation
	cycling in empty entries with TAB.
	(Archiving): Document the default archiving command.
	(Moving subtrees): Document the new keys for archiving.
	(Internal archiving): Fix incorrect key.
	(Agenda commands): Document the TODO set switching commands.
	(Agenda commands): Document the new archiving keys.
	(Clocking work time): Better description on how to save
	and restore a clock.
	(Resolving idle time): Mention the x11idle program to get true
	idleness also under X11.
	(Resolving idle time): Use @kbd instead of @key for normal
	letters, because this is how he rest of the manual does this.
	(Pushing to MobileOrg): Mention that `org-directory'
	should be set.
	(Agenda commands): Document that SPC is a filter for
	any tag.
	(Search view): Renamed from "Keyword search".
	(Capure): New chapter.
	(Markup): New chapter.
	(Links in HTML export, Images in HTML export): Extend
	the section titles.
	(Images in HTML export): Document the align option.
	(Text areas in HTML export): Extend the section title.
	(Images in LaTeX export): Explain image placement in LaTeX.
2009-11-13 08:41:34 +00:00
Chong Yidong
951802d0c1 * compilation.txt: Add one more error message for msft (Bug#4100). 2009-11-08 16:30:52 +00:00
Karl Fogel
3aa8040cc6 * etc/NEWS (Changes in Specialized Modes and Packages in Emacs 23.1):
Document bookmark.el at 2008-06-25T16:51:33Z!monnier@iro.umontreal.ca format upgrade.  (Bug#3375)
2009-10-09 05:25:08 +00:00
Michael Albinus
9a03b2e1ee * NEWS: New function copy-directory. 2009-10-04 12:20:13 +00:00
Chong Yidong
c05676c5ac * srecode: New directory for SRecode template files. 2009-10-03 19:28:56 +00:00
Michael Albinus
d308026462 * files.texi (Directories): delete-directory has an optional
parameter RECURSIVE.
2009-10-01 15:51:43 +00:00
Carsten Dominik
7006d2070a 2009-10-01 Carsten Dominik <carsten.dominik@gmail.com>
* org.texi (Pushing to MobileOrg): Document `org-mobile-files'.
	(Processing LaTeX fragments): Document that the size of images can be
	changes using the variable `org-format-latex-options'.
	(The date/time prompt, Timestamps): Be more accurate over ISO format
	dates and times.
	(Visibility cycling): Document showeverything keyword.
	(In-buffer settings): Document showeverything keyword.
	(Setting up the staging area): Fix the example.
	(MobileOrg): New section.
	(Agenda commands, Exporting Agenda Views): Document exporting the
	agenda view to Org files.
2009-10-01 08:04:32 +00:00
Michael Albinus
8b15e920d5 * NEWS: Mention Tramp connection methods "imap" and "imaps". 2009-09-28 15:51:25 +00:00
Teodor Zlatanov
3d9942648d * net/imap-hash.el: New library, see NEWS.
* Makefile.in (ELCFILES): Add imap-hash.el.

* NEWS: Mention new library imap-hash.el
2009-09-27 14:47:50 +00:00
Juanma Barranquero
1659ada0ff * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
(help-default-arg-highlight): Remove.
  (help-highlight-arg): New function.
  (help-do-arg-highlight): Use it.
  Suggested by Drew Adams <drew.adams@oracle.com>.  (Bug#4510, bug#4520)

* NEWS: Mention new variable `help-downcase-arguments'
  and new default for arguments in *Help* buffers.
2009-09-24 19:19:41 +00:00
Juanma Barranquero
8686ac7162 The --quick command line option now ignores X resources and Registry settings.
* etc/NEWS: Mention new behavior of -Q and new variable `inhibit-x-resources'.

* lisp/startup.el (emacs-quick-startup): Remove variable and all uses.
  (command-line): Set `inhibit-x-resources' instead.
  (command-line-1): Use `inhibit-x-resources' instead.

* src/emacs.c (inhibit_x_resources): New variable.
  (main) [HAVE_NS]: Don't process --quick command line option.
  (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.

* src/lisp.h (inhibit_x_resources): Declare it extern.

* src/w32reg.c (x_get_string_resource):
* src/xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
2009-09-17 23:04:41 +00:00
Chong Yidong
b2d98113d5 * PROBLEMS: Document Athena/Lucid internationalization
problem (Bug#4333).
2009-09-13 20:46:46 +00:00
Carsten Dominik
6eb023476d 2009-09-02 Carsten Dominik <carsten.dominik@gmail.com>
* org.texi (Effort estimates): Document new effort setting commands.
	(Agenda commands): Document the new keys fro agenda time motion.
	Document entry text mode.  Improve documentation of the keys to include
	inactive time stamps into the agenda view.
	(Feedback): Document the new bug report command.
	(Structure editing): Added an index entry for the sorting of subtrees.
2009-09-02 13:08:31 +00:00
Stefan Monnier
82e98df4df * NEWS: Declare unibyte sessions obsolete.
* emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
(main): Use enable-multibyte-characters rather than
default-enable-multibyte-characters.  Output a warning message when
running a unibyte session.
* mule.texi (Enabling Multibyte):
* cmdargs.texi (General Variables): Remove EMACS_UNIBYTE.
(Initial Options): Remove --(no-)multibyte, --(no-)unibyte.
2009-08-29 02:25:29 +00:00
Michael Albinus
7284d47a78 * NEWS: Mention Tramp connection method "rsyncc" and variable
`process-file-side-effects'.
2009-08-28 07:15:44 +00:00
Kenichi Handa
3c736e33eb Mention the new coding system `utf-8-hfs' and many
functions for Unicode normalization.
2009-08-13 12:18:48 +00:00
Chong Yidong
f10ce991ff * MORE.STUFF: Update Etags and Ispell URLs. 2009-08-09 16:22:48 +00:00
Dmitry Dzhus
e9b23a040f * images/gud/all.xpm, images/gud/thread.xpm: New icons for gdb-mi.el 2009-08-08 22:17:05 +00:00
Dan Nicolaescu
3bca7ca557 * term.el (term-handle-ansi-escape): Add comments with the
terminfo capabilities implemented.

* e/eterm-color.ti (msgr, u6, u7): New capabilities.
2009-08-07 07:04:02 +00:00
Michael Albinus
aa16c75d43 *** empty log message *** 2009-08-02 17:35:55 +00:00
Chong Yidong
cabb152788 Add Perl-Glib sample message. 2009-07-26 15:58:55 +00:00
Ken Raeburn
100b635576 Document fixing of load-in-progress corruption. 2009-07-23 00:36:49 +00:00
Glenn Morris
0b5546d610 Standardize headers.
Remove version numbers that don't mean much and are infrequently updated.
Instead, just use Emacs version and date.
Use FSF URL rather than postal address.
2009-07-21 06:46:33 +00:00
Glenn Morris
c2c847d20f Remove non-existent (?) bindings: w, C-u o, U, delete.
Fix bindings: delete marked files = D, not X; flag garbage = % &, not &.
2009-07-16 03:14:00 +00:00
Glenn Morris
f3cc0ddb29 Condense a few sentences in order to make them fit on one line, and
add some page breaks, to improve the layout in the pdfs.
2009-07-16 02:29:37 +00:00
Glenn Morris
31a9ab9d42 (gnus-logo.pdf): Remove rule, since this file is distributed. 2009-07-15 03:28:05 +00:00
Glenn Morris
c1baf2d1e2 (emacsversionnumber): Just use major version. 2009-07-15 03:23:00 +00:00
Kenichi Handa
86b12161e2 Reflect the latest change of TUTORIAL. 2009-07-10 05:49:24 +00:00
Glenn Morris
4cbe53b499 Kevin Ryde <user42 at zip.com.au>
Fix names of some elements.
2009-07-10 04:44:55 +00:00
Glenn Morris
45ea35bfae Standardize the way M-x commands are written:
dashes inside command names, not spaces; spaces before <Return>.
(Summary): Describe the new behavior of C-l.
(Basic Cursor Control): Don't say that files "ought" to end in newlines.
Try to distinguish scroll bar from fringes.
You can also scroll with a wheel mouse.
(If Emacs Stops Responding): Rename from "When Emacs is hung".
(Inserting And Deleting): Continuation marks appear in the fringe.
Clarify that deletion can be undone.  Mention cut and paste, and the Glossary.
(Files, Mode Line): Update mode-line format.
(Extending The Command Set): Downplay C-z, since using Emacs on a
text-only terminal is less common these days.
(Searching): Incremental searching is no longer atypical.
Downplay flow control issues, remove reference to deleted FAQ node.
(Multiple Windows): Mention frames.
(Multiple Frames): New section.
(Getting More Help): Downplay C-h having a different binding.
Don't say help is "on-line", since the meaning has changed.
(More Features): Replace "on-line".  Use C-h rather than F10 h.
Say a little more about completion.
(Conclusion): Don't mention C-z again here.
2009-07-08 02:31:02 +00:00
Jan Djärv
3f1c666608 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
* frame.c: Qmaximized is new.
(x_set_frame_parameters): Do not handle fullscreen specially.
Only set width and height if explicitly set.
(x_set_fullscreen): Handle Qmaximized.
(x_set_font, x_figure_window_size): Do not handle fullscreen specially.
(syms_of_frame): Initialize Qmaximized.

* frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.  Declare
Qfullwidth, Qfullheight, Qfullboth, Qmaximized.

* xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
for Expose event. Add call to x_check_fullscreen for MapNotify event.
Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
set gravity to NorthWestGravity when USE_GTK.
(set_wm_state): New function.
(do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
(x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
(x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
or the case when no window manager is running. That means remove calls
to x_real_positions and x_fullscreen_adjust.

* gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
(xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
flush_and_sync.
(xg_height_changed): New function.
(xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
and gtk_window_set_policy.  Set frame gravity after parsing the geometry
string.
(xg_update_frame_menubar, free_frame_menubar)
(xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
(update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
Remove calls to xg_frame_set_char_size.

* startup.el (command-line-x-option-alist): Add -mm and --maximized.

* NEWS: Mention maximized.

* frames.texi (Size Parameters): Mention maximized for fullscreen.

* xresources.texi (Table of Resources): Mention maximized for
fullscreen.

* cmdargs.texi (Window Size X): -mm/--maximized is new.
2009-07-01 14:02:27 +00:00
Michael Albinus
edb54f2798 * NEWS: Add "synce" connection method of Tramp. 2009-06-30 21:29:44 +00:00
Michael Albinus
ac8b8fcdeb *** empty log message *** 2009-06-24 19:20:49 +00:00
Kenichi Handa
aa4a938453 Re-generated. 2009-06-24 13:04:25 +00:00
Chong Yidong
7024347875 Add "Branch for 23.1" ChangeLog entry. 2009-06-21 14:35:26 +00:00
Kenichi Handa
67cbe6817d *** empty log message *** 2009-06-17 01:26:01 +00:00
Alan Mackenzie
043dfe2460 *** empty log message *** 2009-06-15 09:04:05 +00:00
Bill Wohler
d1d878511d Update for MH-E release 8.2. 2009-06-13 17:15:40 +00:00
Kenichi Handa
742c7b4c4b Re-generated. 2009-06-12 12:34:34 +00:00
Werner LEMBERG
7481597491 * tutorial/TUTORIAL.de: Updated; synchronize with TUTORIAL.
Use reformed Orthography.
Minor improvements.
2009-05-25 10:11:15 +00:00
Chong Yidong
ece53951d7 * refcards/survival.tex: Add M-g M-g binding.
* refcards/survival.tex:
* refcards/sk-survival.tex:
* refcards/sk-refcard.tex:
* refcards/sk-dired-ref.tex:
* refcards/ru-refcard.tex:
* refcards/pt-br-refcard.tex:
* refcards/pl-refcard.tex:
* refcards/fr-survival.tex:
* refcards/fr-dired-ref.tex:
* refcards/dired-ref.tex:
* refcards/cs-survival.tex:
* refcards/cs-refcard.tex:
* refcards/cs-dired-ref.tex: Bump refcard version numbers to 23.
2009-05-19 01:46:13 +00:00
Chong Yidong
a96da3ab42 * refcards/refcard.tex: Update Emacs version to 23. 2009-05-15 06:18:34 +00:00
Chong Yidong
91ce9459d8 * refcards/de-refcard.tex: Merge changes from refcard.tex.
Change `Paragraph' to `Absatz'.
2009-05-15 06:16:32 +00:00
Glenn Morris
583ebd6327 Update some urls. Remove dead links: eshell, expand, ffap, hideshow.
Remove original whitespace, now in obsolete/.
Remember and nXML are part of the distribution now.
2009-04-09 02:32:39 +00:00
Kenichi Handa
2d2db320ff Add description for the argument change of
`set-fontset-font' and `print-fontset'.
2009-03-13 05:07:41 +00:00
Glenn Morris
bd6e492c7c Mention Zile. 2009-02-25 03:58:48 +00:00
Miles Bader
a20878b6d8 Rename system-process-attributes' to process-attributes'
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1553
2009-02-23 05:06:36 +00:00
Nick Roberts
6766b10c2f *** empty log message *** 2009-02-19 06:49:05 +00:00
Jay Belanger
f623f7372c *** empty log message *** 2009-02-14 03:37:42 +00:00
Glenn Morris
ded8c6eac7 Tiny change is tiny. 2009-02-12 03:30:26 +00:00
Glenn Morris
2c015ae787 Fix previous change. 2009-02-05 06:22:39 +00:00
Carsten Dominik
cc6dbcb7b7 2009-02-04 Carsten Dominik <dominik@science.uva.nl>
* org.el (org-return-follows-link): Revert setting
	`org-return-follows-link' to t by default.
2009-02-04 23:01:58 +00:00
Dan Nicolaescu
bec18736a1 (gnu): Add an example for the "note" format. 2009-02-04 13:36:59 +00:00
Jason Rumney
8c4fae510a (CPP): Note problem with resource compiler of MSVC. 2009-02-04 09:13:18 +00:00
Juanma Barranquero
62e466d023 * PROBLEMS (Windows): Add entry about TCC/4NT and App Paths keys. 2009-01-28 23:44:12 +00:00
Carsten Dominik
7ddb1b5f24 2009-01-28 Carsten Dominik <dominik@science.uva.nl>
* org.texi (TODO dependencies): New section.
2009-01-28 14:34:34 +00:00
Carsten Dominik
3da3282ea0 2009-01-27 Carsten Dominik <dominik@science.uva.nl>
* org.texi (Plain lists, TODO basics, Priorities)
	(Multiple sets in one file, Conflicts): Document interaction with
	`shift-selection-mode'.
2009-01-27 11:41:36 +00:00
Kenichi Handa
be7ca04425 (canonicalize-coding-system-name)
(coding-system-from-name): New functions.
2009-01-27 04:39:30 +00:00
Carsten Dominik
55e0839db5 2009-01-25 Carsten Dominik <dominik@science.uva.nl>
* org.texi (References): Add information about remote references.
	(Built-in table editor): Document `C-c RET' in tables.
	(Math symbols, Quoting LaTeX code): Mention that simple
	LaTeX macros survive LaTeX export.
	(Images in LaTeX export): Show how to create a reference to a
	figure.
	(Sectioning structure): Document that the LaTeX class can be
	specified in a property.
	(Text areas in HTML export): New section.
	(External links): Add examples for text search and ID links.
	(Built-in table editor): Remove the descriptio of `C-c
	C-q', it not longer works.
	(Literal examples): Document that a space must follow
	the colon in short examples.
	(Relative timer): Document `org-timer-stop'.
	(Footnotes): New section.
	(Footnote markup): Shorten section and refer to new Footnote
	section.
	(Literal examples): Add documentation for line
	numbering in and references to code examples.
	(CSS support): Fix the description of default CSS styles.
	(Capturing column view): Document
	"file:path/to/file.org" as an allowed value for the ID property of
	a dynamic block copying column view.
2009-01-25 15:57:04 +00:00
Glenn Morris
bb65542c44 Add 2009 to copyright years. 2009-01-08 05:11:56 +00:00
Michael Albinus
cc2fc5a240 * NEWS: Tramp supports IPv6 addresses. 2009-01-03 15:11:47 +00:00
Carsten Dominik
b6cb4cd58c 2008-12-20 Carsten Dominik <dominik@science.uva.nl>
* org.texi (Activation, Exporting, ASCII export, HTML export)
	(HTML Export commands, LaTeX/PDF export commands): Improve
	documentation about transient-mark-mode.
	(References): DOcuemtn the use of special names like $LR1 to reference
	to fields in the last table row.
2008-12-20 14:39:23 +00:00
Eli Zaretskii
bde76d3e83 (MS-DOS): Document the problems on Vista. 2008-12-19 11:13:11 +00:00
Glenn Morris
0a8548de34 File name fix, for AUTHORS. 2008-12-19 03:24:20 +00:00
Glenn Morris
7de6767d8a File name fixes, for AUTHORS. 2008-12-19 03:11:47 +00:00
Glenn Morris
a61646e1e1 Expand some wildcard entries. 2008-12-18 08:16:37 +00:00
Carsten Dominik
ed208c8a18 2008-12-17 Carsten Dominik <dominik@science.uva.nl>
* org.texi: Version number pushed to 6.15d.
2008-12-17 12:39:10 +00:00
Carsten Dominik
67df9cfbb2 2008-12-16 Carsten Dominik <dominik@science.uva.nl>
* org.texi: (Tables in LaTeX export): New section.
	(Images in LaTeX export): New section.
	(Inlined images, Images in HTML export): Sections renamed.
2008-12-16 13:32:13 +00:00
Dan Nicolaescu
7c3cb0ab02 SH3 is still supported. 2008-12-11 07:44:27 +00:00
Carsten Dominik
96c8522ad2 2008-12-02 Carsten Dominik <carsten.dominik@gmail.com>
* org.texi (Using the mapping API): Fix bug in mapping example.
	(Publishing options): Make the list of properties complete again, in
	correspondence to the variable `org-export-plist-vars'.
	(Property searches): Document new special values for time comparisons.
	(Tag inheritance): Refine the description of tag inheritance.
	(Project alist): Add info about the publishing sequence of components.
	(Effort estimates): Document the new relativer timer.
2008-12-07 18:50:50 +00:00
Juanma Barranquero
0956be4f1a * NEWS: Fix typo. (Bug#1439) 2008-11-27 09:14:14 +00:00
Carsten Dominik
e45e35955c 2008-11-12 Carsten Dominik <dominik@science.uva.nl>
* org.texi (Clocking work time): Document the :formula property of
	clock tables.
	(Structure editing, Refiling notes): Document refiling regions.
	(Agenda commands): Document the double-prefix version
	of the `l' command in the agenda.
	(Handling links): Explain the effect of a double prefix
	arg to `C-c C-o'.
	(TODO basics): Add documentation for tag triggers.
2008-11-12 08:09:03 +00:00
Mark A. Hershberger
33198156a9 Examples for compilation.txt for PHP 2008-11-08 16:50:14 +00:00
Juanma Barranquero
d6c180c46b New function `locate-user-emacs-file'.
* subr.el (locate-user-emacs-file): New function.
  (user-emacs-directory): Mention it in docstring.

* completion.el (save-completions-file-name):
* filesets.el (filesets-menu-cache-file):
* image-dired.el (image-dired-dir, image-dired-db-file)
  (image-dired-temp-image-file, image-dired-gallery-dir)
  (image-dired-temp-rotate-image-file):
* savehist.el (savehist-file):
* server.el (server-auth-dir):
* startup.el (auto-save-list-file-prefix):
* thumbs.el (thumbs-thumbsdir):
* tutorial.el (tutorial--saved-dir):
* play/gamegrid.el (gamegrid-user-score-file-directory): Use it.

* url.el (url-configuration-directory): Use `locate-user-emacs-file'.

* NEWS: New function `locate-user-emacs-file'.
2008-10-24 09:39:27 +00:00
Dan Nicolaescu
fac5dc61db * configure.in: Add support for GNU/Linux on SuperH.
* MACHINES: Add section for SuperH.
* m/sh3.h: New file, machine description for SuperH.
2008-10-18 08:11:30 +00:00
Romain Francoise
69d31e5183 Delete leftover conflict markers. 2008-10-12 09:17:13 +00:00
Carsten Dominik
47ffc45683 New files org-attach.el, org-list.el, org-plot.el. 2008-10-12 06:18:14 +00:00
Juanma Barranquero
10d1d0af5f Fix typos. 2008-09-24 01:16:16 +00:00
Daiki Ueno
29c068d1d1 Remove the entry describing auto-encryption. 2008-09-08 03:22:11 +00:00
Robert J. Chassell
3256a4757e Prevent pasting a region twice on an xterm or rxvt in X. 2008-08-26 20:02:17 +00:00
Chong Yidong
5bd950ea3c Fix Javanese pun. 2008-08-23 03:19:53 +00:00
Bill Wohler
f956beb689 *** empty log message *** 2008-08-19 04:41:08 +00:00
Vinicius Jose Latorre
4e5a8be947 Improve whitespace information. 2008-08-15 00:48:55 +00:00
Teodor Zlatanov
6d496c76c6 Add entries about the new auth-source integration and
about the cyrillic-translit modifications.
2008-08-01 21:00:17 +00:00
Adrian Robert
7ded338349 NS port now uses etc/rgb.txt instead of etc/Emacs.clr (now removed); function Fw32_load_color_file moved to xfaces x_load_color_file 2008-08-01 11:48:29 +00:00
Dan Nicolaescu
7c2fb837ec * bitmaps/README:
* xfns.c:
* termcap.c:
* term.c:
* syswait.h:
* systty.h:
* systime.h:
* syssignal.h:
* sysdep.c:
* process.h:
* process.c:
* print.c:
* ndir.h:
* lread.c:
* keyboard.c:
* getpagesize.h:
* floatfns.c:
* fileio.c:
* emacs.c:
* doc.c:
* dispnew.c:
* dired.c:
* data.c:
* callproc.c:
* buffer.c:
* README:
* Makefile.in:
* s/template.h:
* s/msdos.h:
* m/vax.h: Remove VMS support.
* s/vms.h:
* vlimit.h:
* uaf.h:
* temacs.opt:
* param.h:
* ioctl.h: Remove file.

* descrip.mms:
* compile.com: Remove file.
* Create.c: Remove VMS support.

* message.el (Module):

* gnus-start.el (Module):

* gnus-registry.el (Module):

* textmodes/texinfmt.el:
* nxml/nxml-enc.el:
* mail/feedmail.el:
* international/mule.el:
* international/latexenc.el:
* emulation/viper-util.el:
* emulation/viper-init.el:
* emulation/viper-ex.el:
* emacs-lisp/bytecomp.el:
* version.el:
* subr.el:
* startup.el:
* sort.el:
* shadowfile.el:
* recentf.el:
* printing.el:
* paths.el:
* minibuffer.el:
* ls-lisp.el:
* loadup.el:
* hippie-exp.el:
* finder.el:
* files.el:
* ediff-util.el:
* ediff-ptch.el:
* ediff-init.el:
* ediff-diff.el:
* dired.el:
* dired-aux.el:
* cus-edit.el:
* bindings.el:
* arc-mode.el:
* add-log.el: Remove VMS support.
* obsolete/vmsproc.el:
* obsolete/vms-pmail.el:
* obsolete/vms-patch.el: Remove file.

* etags.c:
* emacsclient.c: Remove VMS support.

* termcap.src: Remove file.
* README:
* PROBLEMS:
* MACHINES: Remove VMS info.

* ediff.texi: Remove VMS support.

* os.texi:
* intro.texi:
* files.texi: Remove VMS support.

* emacs.texi: Remove VMS support.

* make-dist:
* README: Remove VMS support.
* vms: Remove directory.
2008-07-31 05:33:56 +00:00
Dan Nicolaescu
9e2a264775 Remove support for Mac Carbon.
* mactoolbox.c:
* macterm.h:
* macterm.c:
* macselect.c:
* macmenu.c:
* macgui.h:
* macfns.c:
* mac.c: Remove file.
* s/darwin.h:
* m/intel386.h:
* xfaces.c:
* xdisp.c:
* window.c:
* tparam.c:
* termhooks.h:
* termcap.c:
* term.c:
* syssignal.h:
* sysselect.h:
* sysdep.c:
* process.c:
* lread.c:
* lisp.h:
* keyboard.c:
* image.c:
* fringe.c:
* frame.h:
* frame.c:
* fontset.c:
* font.h:
* font.c:
* fns.c:
* fileio.c:
* emacs.c:
* dispnew.c:
* dispextern.h:
* config.in:
* atimer.c:
* Makefile.in: Remove code for Carbon

* erc.el: Remove code for Carbon.

Remove support for Mac Carbon.
* term/mac-win.el: Remove file
* international/mule-cmds.el:
* version.el:
* startup.el:
* simple.el:
* mwheel.el:
* mouse.el:
* loadup.el:
* isearch.el:
* info.el:
* frame.el:
* faces.el:
* disp-table.el:
* cus-start.el:
* cus-face.el:
* cus-edit.el:
* Makefile.in: Remove code for Carbon.

Remove support for Mac Carbon.
* makefile.w32-in:
* emacsclient.c: Remove code for Carbon.

* PROBLEMS:
* MACHINES: Remove mentions of Mac Carbon.

* ns-emacs.texi:
* faq.texi: Remove mentions of Mac Carbon.

* os.texi:
* frames.texi:
* display.texi: Remove mentions of Mac Carbon.

* xresources.texi: Remove mentions of Mac Carbon.

* make-tarball.txt:
* admin.el:
* FOR-RELEASE:
* CPP-DEFINES: Remove mentions of Mac Carbon.

Remove support for Mac Carbon.
* mac: Remove directory.
* make-dist:
* configure.in:
* README:
* Makefile.in:
* INSTALL:  Remove code for Carbon.
* configure: Regenerate.
2008-07-27 18:24:48 +00:00
Vinicius Jose Latorre
355b422fd2 New function diff-show-trailing-blanks in diff-mode.el. 2008-07-25 02:34:31 +00:00
Michael Albinus
b8454fe2de *** empty log message *** 2008-07-24 21:52:33 +00:00
Vinicius Jose Latorre
2f56f788e1 Add whitespace package information. 2008-07-24 03:56:00 +00:00
Juri Linkov
15f5445063 Add information about C-g to the introduction. 2008-07-19 23:54:48 +00:00
Juanma Barranquero
ba60bd44c7 Fix typos. 2008-07-18 15:42:14 +00:00
Juanma Barranquero
555b0992fd * lisp/startup.el (fancy-splash-head): Fix change of 2008-07-02.
* etc/images/splash8.xpm: Remove.
2008-07-18 14:22:24 +00:00
Adrian Robert
06b627700d remove need for nextstep/compile for NS build; also, add NEWS entry about the port 2008-07-17 17:44:41 +00:00
Adrian Robert
edfda78355 merging Emacs.app (NeXTstep port) 2008-07-15 18:15:18 +00:00
Kenichi Handa
3b48f0d2a6 *** empty log message *** 2008-07-14 04:47:19 +00:00
Juri Linkov
268207a34b Use more correct IPA characters for English pronunciation.
Add the combining acute accent after the accented vowel in the
Russian example like it is used in dictionaries.
2008-07-12 20:41:55 +00:00
Juanma Barranquero
68548459a1 Add new SVG and PNG splash images.
* etc/images/splash.png:
* etc/images/splash.svg:
* etc/images/gnus/gnus.png:
* etc/images/gnus/gnus.svg: New files.

* lisp/startup.el (fancy-splash-head):
* lisp/gnus/gnus.el (gnus-group-startup-message):
  Prefer SVG or PNG image, if available.
2008-07-02 01:49:03 +00:00
Glenn Morris
fffa137cb7 American English spelling fix. 2008-06-27 07:34:53 +00:00
Glenn Morris
6772c8e169 American English spelling fix. 2008-06-27 02:41:14 +00:00
Kenichi Handa
50542767a7 *** empty log message *** 2008-06-25 07:16:43 +00:00
Michael Albinus
e9e70c4354 *** empty log message *** 2008-06-21 19:21:53 +00:00
Juanma Barranquero
b344d29d16 Fix typos, convert to utf-8. 2008-06-13 13:42:21 +00:00
John Paul Wallington
203553fdc3 Document that `completion-ignore-case' is nil on MS-Windows. 2008-06-08 17:25:40 +00:00
Michael Olson
23aaf52ba0 etc/ChangeLog: Update. 2008-05-19 22:38:15 +00:00
Glenn Morris
ab73e885f0 Switch to recommended form of GPLv3 permissions notice. 2008-05-15 07:32:14 +00:00
Juri Linkov
5525fa30ac *** empty log message *** 2008-05-11 20:29:07 +00:00
Eric S. Raymond
db86064f73 Meta-CVS support removed. 2008-05-07 22:11:08 +00:00
Nick Roberts
ba82b36e4a *** empty log message *** 2008-05-05 11:55:44 +00:00
Reiner Steib
e405fa5f4e * NEWS: Reword previous commit.
* NEWS.22: Document removal of duplicated "alt-" input methods.
2008-05-04 10:23:41 +00:00
Glenn Morris
1cb3343813 Move here from ../lisp 2008-04-26 02:39:10 +00:00
Jason Rumney
312082e9dc (Burmese): Rename from Myanmar to be consistent with comment in burmese.el 2008-04-06 15:21:36 +00:00
Miles Bader
5bc6ddff00 Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1107
2008-04-05 23:01:26 +00:00
Kenichi Handa
880820fe87 (Fdefine_charset_internal): Change the way of
registering charsets in Vcharset_order_list.
(syms_of_charset): Make the charset `eight-bit' supplementary.
2008-03-27 11:36:43 +00:00
Chong Yidong
03a864d5b3 Bump version to 22.2. 2008-03-26 13:47:40 +00:00
Reiner Steib
e652d4d353 (incoming mail files): Add version. 2008-03-22 10:13:32 +00:00
Carsten Dominik
28a16a1bf0 * org.texi (Exporting Agenda Views): Document agenda export to
iCalendar.
	(Progress logging): Document the new progress logging
	stuff.
2008-03-13 08:50:59 +00:00
Reiner Steib
81fc1eb405 Refer to node name `Init Rebinding' instead of title. 2008-03-12 23:11:29 +00:00
Reiner Steib
bd6b0b0177 Remove even more discussion of flow control. 2008-03-12 22:38:26 +00:00
Chong Yidong
8e8b845d1d Copyedit. 2008-03-12 13:42:04 +00:00
Chong Yidong
4d2d106e6f * TUTORIAL, TUTORIAL.fr, TUTORIAL.ro, TUTORIAL.bg, TUTORIAL.it:
* TUTORIAL.ru, TUTORIAL.cn, TUTORIAL.ja, TUTORIAL.sk:
* TUTORIAL.cs, TUTORIAL.ko, TUTORIAL.sl, TUTORIAL.de:
* TUTORIAL.nl, TUTORIAL.sv, TUTORIAL.eo, TUTORIAL.pl, TUTORIAL.th:
* TUTORIAL.es, TUTORIAL.pt_BR: Remove discussion of flow control.
2008-03-12 13:39:52 +00:00
Chong Yidong
9cd754b337 * TUTORIAL, TUTORIAL.fr, TUTORIAL.ro, TUTORIAL.bg, TUTORIAL.it:
* TUTORIAL.ru, TUTORIAL.cn, TUTORIAL.ja, TUTORIAL.sk:
* TUTORIAL.cs, TUTORIAL.ko, TUTORIAL.sl, TUTORIAL.de:
* TUTORIAL.nl, TUTORIAL.sv, TUTORIAL.eo, TUTORIAL.pl, TUTORIAL.th:
* TUTORIAL.es, TUTORIAL.pt_BR: Remove discussion of flow control.
2008-03-12 13:34:10 +00:00
Juanma Barranquero
85efdcf340 Describe linum.el. 2008-03-12 09:31:59 +00:00
Glenn Morris
cf358568d8 Remove Creator metadata. 2008-03-11 04:36:26 +00:00
Jan Djärv
e8db5c599d New files. 2008-03-06 11:01:53 +00:00
Jason Rumney
67ab204543 *** empty log message *** 2008-03-03 22:09:09 +00:00
Dan Nicolaescu
7b7b316efd Fix format. 2008-03-03 21:58:50 +00:00
Glenn Morris
8298ed3724 Restore r1.1 of emacs.png as emacs22.png 2008-03-03 09:01:05 +00:00
Dan Nicolaescu
c9cc646241 New icon. 2008-03-02 18:18:35 +00:00
Miles Bader
51fb064bc7 Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1090
2008-03-01 01:28:31 +00:00
Reiner Steib
143cecdb7a (Gnus): Mention problem with coding system `utf-8-emacs'
when using different Emacs versions.
2008-02-26 21:08:38 +00:00
Jan Djärv
28bcb349cc Mention stock icons for Gtk+. 2008-02-25 08:15:42 +00:00
Miles Bader
b03f96dc5a Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1074
2008-02-24 10:09:07 +00:00
Juanma Barranquero
4a4bdfc7a6 *** empty log message *** 2008-02-22 02:56:58 +00:00
Kenichi Handa
1909542280 Mention the new language envrironments Bengali, Punjabi,
Gujarati, Oriya, Telugu, Sinhala.  Mention the removal of features
devanagari, devan-util, kannada, knd-util, malayalam, mlm-util,
tamil, and tml-util.
2008-02-22 02:05:12 +00:00
Michael Olson
607d3be220 etc/ChangeLog: Update. 2008-02-22 01:24:26 +00:00
Kenichi Handa
6a6b4d7d67 Improve the description about the removal of
cp-...-codepage functions.  Describe the removal of the feature
`devan-util'.
2008-02-21 08:16:37 +00:00
Glenn Morris
027cd64481 Merge into NEWS. 2008-02-21 03:36:56 +00:00
Kenichi Handa
3d8c4938d5 Mention the removal of codepage related functions. 2008-02-20 05:39:38 +00:00
Glenn Morris
1f7bdd6fc6 Move here from lisp/nxml. Rename from "test." to "test-" for doschk. 2008-02-16 22:44:58 +00:00
Michael Olson
c6588a85bc EasyPG: Improve NEWS entry. 2008-02-10 20:51:42 +00:00
Eli Zaretskii
f34cec5cc8 Remove redundant empty lines, insert a magic line instead. 2008-02-09 13:00:20 +00:00
Jan Djärv
7b476dbe7c Mention XEmbed and --parent-id. 2008-02-08 08:57:40 +00:00
Michael Olson
4b01af2e1e EasyPG: Add ChangeLog entries. 2008-02-08 06:56:24 +00:00
Glenn Morris
bcc891c25d Some tidying post-unicode-merge: typos, tense, simplification, filling. 2008-02-07 06:19:35 +00:00
Eli Zaretskii
ee2502fab1 Restore copyright years. Update tutorial. Fix wording. 2008-02-02 10:59:40 +00:00
Eli Zaretskii
de04a3caaf Restore copyright years. Update tutorial. Fix wording. 2008-02-02 10:00:12 +00:00
Glenn Morris
c4258029ff * ps-prin1.ps (HeaderOrFooterTextLines): Remove entry - this change
has never been on the trunk.
2008-02-02 04:09:10 +00:00
Glenn Morris
f78b3baf32 Adjust dates of unicode merge entries to UTC.
Remove entry about syncing with HEAD.
* ps-prin1.ps (printBackground): Remove entry duplicated from
2007-01-26 to 2008-02-02.
Past tense -> present tense (regenerated, updated).
"ps.print0.ps" -> "ps.prin0.ps" (fix typo)
2008-02-02 04:02:22 +00:00
Miles Bader
aca7a3d201 Merge ChangeLog.unicode files into ChangeLogs
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1038
2008-02-01 16:05:01 +00:00
Chong Yidong
f05c591d1d * tutorials/TUTORIAL.ru: Update tutorial. 2008-01-31 15:37:37 +00:00
Chong Yidong
6a850b35b5 * TUTORIAL.ru: Update tutorial. 2008-01-31 15:33:09 +00:00
Michael Olson
5e56b3fb5a ERC: Sync version 5.3, release candidate 1. 2008-01-25 03:28:10 +00:00
Juanma Barranquero
1966aa849b New entry. 2008-01-22 10:14:18 +00:00
Carsten Dominik
dbc28aaa52 (Property inheritance): New section
(Conventions): New section.
	(Structure editing): Document C-RET, the prefix arg to the cut/cpy
	commands, and the new bindings for refiling.
	(Sparse trees): Document the new special command for sparse trees.
	(References): Be more clear about the counting of hilines.
	(Handling links): Document M-p/n for accessing links.
	(Fast access to TODO states): New section.
	(Per file keywords): New section.
	(Property inheritance): New section.
	(Column attributes): New summary types.
	(Capturing Column View): New section.
	(The date/time prompt): Cover the new features in the date/time
	prompt.  Compactify the table of keys for the calendar remote
	control.
	(Clocking work time): Document the new :scope parameter.
	(Remember): Promoted to chapter.
	(Quoted examples): New section.
	(Enhancing text): New verbatim environments.
2008-01-18 15:20:31 +00:00
Eli Zaretskii
bb9f794856 Mention that old platforms are no longer supported. Add a reference to
the full list in MACHINES.
2008-01-12 15:24:21 +00:00
Miles Bader
59ce725a3b Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-987
2008-01-08 20:46:54 +00:00
Glenn Morris
70b79a6011 Kevin Ryde <user42 at zip.com.au>
(compilation-error-regexp-alist-alist): For perl, allow "during global
destruction" at end.
2008-01-08 07:54:04 +00:00
Glenn Morris
049dcb6f8c Kevin Ryde <user42 at zip.com.au>
(compilation-error-regexp-alist-alist): For perl, allow "during global
destruction" at end.
2008-01-08 07:53:53 +00:00
Glenn Morris
6c5a896448 *** empty log message *** 2008-01-08 05:00:52 +00:00
Glenn Morris
1bb97e221b Add 2008 to copyright years. 2008-01-08 04:54:02 +00:00
Juanma Barranquero
97fdf31e3d *** empty log message *** 2008-01-07 15:27:37 +00:00
Dan Nicolaescu
f3041af143 * configure.in: Remove references to unsupported systems.
* notes/copyright:
* MAINTAINERS: Remove references to files that have been removed.

* os.texi (System Environment): Remove references to OSes that are
not supported anymore.

* PROBLEMS:
* MACHINES: Remove references to systems not supported anymore.

* makefile.w32-in:
* Makefile.in: Remove references to Xenix.

* gnus.el (gnus-use-long-file-name): Remove reference to xenix.

* obsolete/x-apollo.el: Remove file for unsupported system.

* term/x-win.el (vendor-specific-keysyms): Remove reference to
Apollo.

* progmodes/gud.el (gud-dgux-p): Remove.
(dbx): Remove reference to dgux.

* progmodes/ps-mode.el (ps-mode-print-function):
* ps-print.el (ps-lp-system):
* paths.el (rmail-spool-directory):
* ls-lisp.el (ls-lisp-emulation):
* lpr.el (lpr-lp-system):
* dired.el (dired-chown-program): Remove references to dgux.

* m/7300.h:
* m/acorn.h:
* m/alliant-2800.h:
* m/alliant.h:
* m/alliant1.h:
* m/alliant4.h:
* m/altos.h:
* m/amdahl.h:
* m/apollo.h:
* m/att3b.h:
* m/aviion-intel.h:
* m/aviion.h:
* m/celerity.h:
* m/clipper.h:
* m/cnvrgnt.h:
* m/convex.h:
* m/cydra5.h:
* m/delta88k.h:
* m/dpx2.h:
* m/dual.h:
* m/elxsi.h:
* m/f301.h:
* m/gould-np1.h:
* m/gould.h:
* m/i860.h:
* m/ibmps2-aix.h:
* m/ibmrt-aix.h:
* m/ibmrt.h:
* m/irist.h:
* m/is386.h:
* m/isi-ov.h:
* m/mega68.h:
* m/mg1.h:
* m/news-r6.h:
* m/news-risc.h:
* m/news.h:
* m/nh3000.h:
* m/nh4000.h:
* m/ns16000.h:
* m/ns32000.h:
* m/nu.h:
* m/orion.h:
* m/orion105.h:
* m/paragon.h:
* m/pfa50.h:
* m/plexus.h:
* m/pyramid.h:
* m/pyrmips.h:
* m/sh3el.h:
* m/sps7.h:
* m/sr2k.h:
* m/stride.h:
* m/sun1.h:
* m/sun2.h:
* m/sun3-68881.h:
* m/sun3-fpa.h:
* m/sun3-soft.h:
* m/sun3.h:
* m/sun386.h:
* m/symmetry.h:
* m/tad68k.h:
* m/tahoe.h:
* m/targon31.h:
* m/tek4300.h:
* m/tekxd88.h:
* m/tower32.h:
* m/tower32v3.h:
* m/ustation.h:
* m/wicat.h:
* m/xps100.h:
* s/cxux.h:
* s/cxux7.h:
* s/dgux.h:
* s/dgux4.h:
* s/dgux5-4-3.h:
* s/dgux5-4r2.h:
* s/esix.h:
* s/esix5r4.h:
* s/hiuxmpp.h:
* s/hiuxwe2.h:
* s/iris3-5.h:
* s/iris3-6.h:
* s/isc2-2.h:
* s/isc3-0.h:
* s/isc4-0.h:
* s/isc4-1.h:
* s/newsos5.h:
* s/newsos6.h:
* s/osf1.h:
* s/osf5-0.h:
* s/riscix1-1.h:
* s/riscix12.h:
* s/sco4.h:
* s/sco5.h:
* s/sunos4-0.h:
* s/sunos4-1.h:
* s/sunos413.h:
* s/sunos4shr.h:
* s/umax.h:
* s/unipl5-2.h:
* s/xenix.h:
* cxux-crt0.s:
* unexapollo.c:
* unexconvex.c:
* unexenix.c:
* unexsni.c: Remove files for systems no longer supported.

* m/intel386.h: Remove references to unsupported systems.

* w32.c (get_emacs_configuration): Remove reference to i860.

* sysdep.c: Remove dead code.
2008-01-06 00:56:56 +00:00
Dan Nicolaescu
d35e1cd725 * configure.in: Remove support for Masscomp.
* os.texi (System Environment): Remove mention for Masscomp.

* MACHINES: Remove Masscomp.

* s/rtu.h:
* m/masscomp.h: Remove files. Platform is obsolete.
2008-01-05 11:14:48 +00:00
Dan Nicolaescu
1c88479513 * emacs.desktop (Icon): Update icon name. 2008-01-03 07:35:42 +00:00
Eli Zaretskii
e7bdf123c4 *** empty log message *** 2007-12-16 20:18:54 +00:00
Eli Zaretskii
30361feeba Renamed xhtml-style.rnc to xhtml-xstyle.rnc; all users changed. 2007-12-15 11:37:25 +00:00
Eli Zaretskii
0afd5f04f5 Fix a typo in commentary. 2007-12-15 10:50:45 +00:00
Eli Zaretskii
243d547c73 Renamed macemacs_512.png to emacs512_mac.png. 2007-12-15 10:27:17 +00:00
Dan Nicolaescu
4f85908cfe *** empty log message *** 2007-12-08 22:27:34 +00:00
Dan Nicolaescu
d65f0593f5 * emacs.desktop (Exec, Icon, Categories): Fix entries. 2007-12-08 21:34:13 +00:00
Reiner Steib
cf944fa4ed Add minimal Gnus item. 2007-12-08 14:29:18 +00:00
Dan Nicolaescu
e10fe1cbe2 New file. 2007-12-08 01:39:15 +00:00
Glenn Morris
5adb5026cd Whitespace. 2007-11-30 08:15:24 +00:00
Glenn Morris
fb87d8deaa New file. 2007-11-30 08:15:12 +00:00
Glenn Morris
d98a632895 Move to etc/nxml 2007-11-28 05:09:32 +00:00
Glenn Morris
6d4ca4d266 Move here from lisp/nxml/char-name/unicode 2007-11-28 05:03:06 +00:00
Glenn Morris
a35a753ac3 (message-tool-bar-retro): Update for rename mail_send.xpm->mail-send.xpm. 2007-11-24 03:23:15 +00:00
Glenn Morris
e3b0153ada Rename from mail_send.xpm. 2007-11-24 03:19:41 +00:00
Mark A. Hershberger
ac97a16bd1 Fixups for nxml per Romain Francoise email. 2007-11-23 19:38:49 +00:00
Mark A. Hershberger
8cd39fb3c4 Initial merge of nxml 2007-11-23 06:58:00 +00:00
Reiner Steib
a352dec11f Add missing entry from merge of No Gnus. 2007-11-22 21:12:54 +00:00
Francesco Potortì
42ee556676 Updates to etags.1. 2007-11-22 12:13:11 +00:00
Francesco Potortì
17ac6c2819 Remove the following entry for etags:
the --members option is now the default.
2007-11-22 10:41:59 +00:00
Francesco Potortì
20f123b4e0 etags: the --members option is now the default. 2007-11-22 10:39:44 +00:00
Glenn Morris
fe22da3cad New file, with info from
<http://lists.gnu.org/archive/html/emacs-devel/2007-11/msg01480.html>
2007-11-22 07:03:00 +00:00
Vinicius Jose Latorre
afefed6222 Add new entries. 2007-11-12 18:27:10 +00:00
Dan Nicolaescu
07e5c0b0b7 * cmdargs.texi (Misc Variables): Remove Sun windows info.
* MACHINES: Remove Sun windows info.

* term/sun-mouse.el:
* obsolete/sun-fns.el:
* obsolete/sun-curs.el: Remove files.

* term/sun.el (select-previous-complex-command):

* sunfns.c: Remove file

* m/sun386.h:
* m/sun2.h:
* m/sparc.h: Remove Sun windows code.
2007-11-01 03:06:23 +00:00
Michael Olson
15f3eb73ae Check in Remember Mode 2007-10-30 01:39:14 +00:00
Glenn Morris
f930e1a4d0 *** empty log message *** 2007-10-29 07:40:18 +00:00
Michael Olson
b6675b2d62 Sync from upstream ERC 2007-10-29 01:00:33 +00:00
Juanma Barranquero
2697297fb5 Add *.pyc. 2007-10-27 13:51:27 +00:00
Miles Bader
fdc9061358 Merge from emacs--rel--22
Patches applied:

 * emacs--rel--22  (patch 131-137)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 261-262)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-908
2007-10-27 09:07:17 +00:00
Jonathan Yavner
d88da39af6 Get rid of silly life-universe-everything local
variable.  `symbolic-formulas' is now `ses--symbolic-formulas'.
2007-10-25 20:11:14 +00:00
Juanma Barranquero
a8d7b1a0a0 Mention desktop locking. 2007-10-24 10:22:32 +00:00
Eric S. Raymond
4a11b6b51a New VC in the NEWS. 2007-10-10 13:30:46 +00:00
Miles Bader
1af74d06e5 Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-875
2007-10-09 08:52:57 +00:00
Glenn Morris
706475a947 Mention Tex superscript font issue. 2007-09-28 03:32:04 +00:00
Glenn Morris
8b6f62fc57 (tex-suscript-height-ratio, tex-suscript-height-minimum): New
customizable variables.
(tex-suscript-height): New function.
(superscript, subscript): Set height using tex-suscript-height
rather than fixing at 0.8.
2007-09-28 03:29:59 +00:00
Juanma Barranquero
d87b5cedee Fix typo. 2007-09-25 11:31:17 +00:00
Glenn Morris
a0e0e2db56 New file. 2007-09-24 00:43:27 +00:00
Glenn Morris
c3f01f42da Adam Hupp <adam at hupp.org>
Split into emacs2.py and emacs3.py for python 2 and python 3 compatibility.
2007-09-24 00:19:45 +00:00
Glenn Morris
ac3afa5a4f (emacs-quit-menu): Remove emacstool-related code. 2007-09-21 04:01:33 +00:00
Glenn Morris
6f022c1954 Adapt for removal of emacstool. 2007-09-21 03:48:43 +00:00
Glenn Morris
44f9ac8a46 Remove obsolete file. 2007-09-21 03:43:46 +00:00
Glenn Morris
4a15561002 Remove unused file. 2007-09-16 02:09:51 +00:00
Stefan Monnier
4227cc48d6 (complete.class_members): Make sure we return the _emacs_out
message even in the face of exceptions.
2007-09-12 19:44:36 +00:00
Glenn Morris
0d75dcc882 (SOURCES, unlock, relock): Delete. 2007-09-12 06:58:49 +00:00
Michaël Cadilhac
f664fee97d Document the interactive specification for C functions.
Say that `set-file-modes' is now interactive.
2007-09-10 09:56:11 +00:00
Michael Olson
c10b059718 ERC-NEWS: Improve description of erc-ssl and erc-tls change 2007-09-10 01:20:44 +00:00
Juri Linkov
67bd779a08 *** empty log message *** 2007-09-09 12:58:40 +00:00
Michael Olson
526dc846a1 Sync ERC 5.3 (devel) from upstream 2007-09-08 03:07:09 +00:00
Glenn Morris
fb6794d500 Also mention gnus-logo.pdf license. 2007-09-06 03:53:40 +00:00
Jason Rumney
6cba87d7ba Mention focus-follows-mouse change. 2007-09-05 23:25:26 +00:00
Carsten Dominik
223afe6456 *** empty log message *** 2007-08-30 10:26:21 +00:00
Andreas Schwab
fe6b2fd06f Typo. 2007-08-29 15:17:59 +00:00
Jan Djärv
2e3695d2a9 Say that Gtk+ build uses stock icons. 2007-08-29 06:05:01 +00:00
Werner LEMBERG
23e2b39d14 Use C-M-%' instead of M-x query-replace-regexp'. 2007-08-28 05:48:08 +00:00
YAMAMOTO Mitsuharu
a186cc54a2 (Mac OS X): Add alternative workaround for QuickTime
updater breakage.
2007-08-27 08:32:36 +00:00
YAMAMOTO Mitsuharu
4b34031944 (Mac OS X): Add alternative workaround for QuickTime
updater breakage.
2007-08-27 08:29:51 +00:00
Miles Bader
7f22a76506 Merge from emacs--rel--22
Patches applied:

 * emacs--rel--22  (patch 97-100)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 246-247)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-860
2007-08-27 04:00:19 +00:00
Michaël Cadilhac
ea404efcd1 Change fr-drdref' to fr-dired-ref'. 2007-08-26 21:19:37 +00:00
Michaël Cadilhac
c0dadae9dd Say that PDF files are now the default for refcards. 2007-08-26 21:08:54 +00:00
Michaël Cadilhac
8fb9a9b63d Add rules for creating the refcards in PDF, make them the default. 2007-08-26 21:05:10 +00:00
Karl Berry
3baad51b54 missed ChangeLog entry 2007-08-25 00:30:23 +00:00
Karl Berry
6ea4d0d7cb no "per johns", I wrote this change 2007-08-24 22:54:44 +00:00
Glenn Morris
08039aa294 (mostlyclean, clean, distclean, maintainer-clean): Delete these
targets since nothing uses them.
(SOURCES): Update.
Move comments to e/README.  Remove license from now-trivial file.
2007-08-23 03:38:12 +00:00
Karl Berry
af1b9aeda9 refcard updates for printing 2007-08-22 20:14:13 +00:00
Michael Albinus
6c5d503fc2 * NEWS: `shell' prompts for the default directory if called with a
prefix and `default-directory' is a remote file name.
2007-08-22 20:08:18 +00:00
Carsten Dominik
fd3c02d8cb * org.texi (Adding hyperlink types): New section.
(Embedded LaTeX): Chapter updated because of LaTeX export.
	(LaTeX export): New section.
	(Using links out): New section.
2007-08-22 11:52:16 +00:00
Glenn Morris
9f56b5ee3a Move information about tex files from etc/README to etc/refcards/README.
Remove license from file as it is now trivial.
2007-08-22 08:22:58 +00:00
Glenn Morris
869653856c New file, with existing refcard rules from etc/Makefile. 2007-08-22 08:17:11 +00:00
Glenn Morris
5511c2e63d *** empty log message *** 2007-08-22 08:06:18 +00:00
Glenn Morris
38f37c0fdb Move from etc/ to etc/images/ 2007-08-22 07:48:34 +00:00
Glenn Morris
a523f0c74b Move refcards from etc/ to etc/refcards/ 2007-08-22 07:28:23 +00:00
Glenn Morris
45196e0ba7 *** empty log message *** 2007-08-22 05:08:35 +00:00
Miles Bader
bdaf8a62d5 Merge from emacs--rel--22
Patches applied:

 * emacs--rel--22  (patch 93-96)

   - Update from CVS
   - Merge from gnus--rel--5.10

 * gnus--rel--5.10  (patch 245)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-856
2007-08-21 04:51:30 +00:00
Glenn Morris
0b964e141e (bad-packages-alist): New constant.
(bad-package-check): New function.  Together, these two add
elements to `after-load-alist' to check for problematic external
packages.
2007-08-14 07:45:48 +00:00
Miles Bader
37cc095b6a Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-851
2007-08-13 13:41:28 +00:00
Glenn Morris
cfbe273188 telnet, erc-server issues fixed. 2007-08-08 07:11:08 +00:00
Glenn Morris
dbcbec02bf *** empty log message *** 2007-08-01 06:25:04 +00:00
Miles Bader
9aecacd08a Merge from emacs--rel--22
Patches applied:

 * emacs--rel--22  (patch 70-73)

   - Update from CVS

2007-07-25  Glenn Morris  <rgm@gnu.org>

   * Relicense all FSF files to GPLv3 or later.

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-828
2007-07-26 05:28:10 +00:00
Glenn Morris
cacc7b5131 Switch license to GPLv3 or later. 2007-07-25 07:11:02 +00:00
Glenn Morris
fca4a5de17 Switch license to GPLv3 or later. 2007-07-25 06:48:19 +00:00
Michael Albinus
6dbe7eb4e2 * NEWS: New functions `start-file-process-shell-command' and
`process-file-shell-command'.
2007-07-24 20:40:26 +00:00
Michael Albinus
41bd52f71d * NEWS: `file-remote-p' has a new optional parameter IDENTIFICATION. 2007-07-17 21:34:31 +00:00
Karl Fogel
36ae4ff74e Revert recent bookmark keybinding changes, thus returning to using
three slots under C-x r.  See this message and its thread for details:
http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00705.html.

* lisp/bookmark.el: Revert 2007-07-13T18:16:17Z!kfogel@red-bean.com.

* etc/NEWS: Revert 2007-07-13T23:20:21Z!kfogel@red-bean.com, which
  documented bookmark keybinding changes that were later reverted.

* man/ChangeLog: Remove ChangeLog entry for accidentally uncommitted
  changes to regs.texi that would have documented the keybinding
  change reverted above.
2007-07-15 01:34:15 +00:00
Glenn Morris
43335a6daa Sync from trunk:
Werner Lemberg  <wl at gnu.org>

* emacs.1: Completely revised.  Fix many typographical glitches.
Updated to handle current state of options and resources.
2007-07-15 01:23:15 +00:00
Jan Djärv
a34756594c (bugzilla): Mention gtk-engines-qt bug. 2007-07-14 09:02:35 +00:00
Jan Djärv
f6021509c5 Mention gtk-engines-qt problem. 2007-07-14 09:02:06 +00:00
Karl Fogel
488eebbd19 * NEWS: Update for recent bookmark keybinding changes. 2007-07-13 23:20:21 +00:00
Michael Albinus
cc213f24d7 * NEWS: Add Tramp and comint-mode changes. 2007-07-10 19:52:37 +00:00
Michael Albinus
64639e26dd * NEWS: `file-remote-p' has a new optional parameter CONNECTED. 2007-07-08 18:10:09 +00:00
Michael Albinus
b2b387f94f * NEWS: New function `start-file-process'. 2007-07-07 11:17:03 +00:00
Carsten Dominik
386477e399 *** empty log message *** 2007-07-02 13:36:08 +00:00
Michael Albinus
03605a2874 * NEWS: `dired-call-process' has been removed. 2007-06-27 21:07:49 +00:00
Glenn Morris
5b8ffa1192 *** empty log message *** 2007-06-20 07:55:30 +00:00
Michael Kifer
33af2b6ea3 moved my entry from etc/ChangeLog to lisp/ChangeLog
was put in etc/ChangeLog by mistake
2007-06-14 19:30:34 +00:00
Michael Kifer
0ce61b6f9b 2007-06-14 Michael Kifer <kifer@cs.stonybrook.edu>
* viper.el (viper-describe-key-ad, viper-describe-key-briefly-ad):
	different advices for Emacs and XEmacs. Compile them conditionally.
	(viper-version): belated version change.
2007-06-14 18:10:46 +00:00
Nick Roberts
f2f6e8df0e *** empty log message *** 2007-06-14 11:00:55 +00:00
Werner LEMBERG
2c341244d1 * emacs.1: Completely revised.
Fix many typographical glitches.
Updated to handle current state of options and resources.
2007-06-14 04:51:35 +00:00
Glenn Morris
7a9a50d8fc (HAVE_GIF): Doc fix.
(LIBGIF): New (already used by Makefile.in).
2007-06-12 08:16:04 +00:00
Miles Bader
0114082988 Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-790
2007-06-09 03:19:04 +00:00
Glenn Morris
dd812e3616 Sync 2007-05-19 change from trunk. 2007-06-07 07:43:31 +00:00
Glenn Morris
236a41785c Mark H. Weaver <mhw at netris.org> (tiny change)
(set-mark-command-repeat-pop): Fix duplicate entry.
2007-06-07 06:46:12 +00:00
Glenn Morris
f1c5dbb9d6 Alfred M. Szmidt <ams at gnu.org> (tiny change)
(rmail-summary-save-buffer): New command.
(rmail-summary-mode-map): Add rmail-summary-save-buffer.
2007-06-07 06:38:43 +00:00
Glenn Morris
37229e1091 Michael Olson <mwolson at gnu.org>
Update eshell URL.
2007-06-07 06:24:53 +00:00
Glenn Morris
70bb6a6548 Eric M. Ludlam <eric at siege-engine.com>
(checkdoc-ispell-lisp-words): Remove "iff".
2007-06-07 06:22:02 +00:00
Carsten Dominik
31e5288cd8 Large number of changes. 2007-06-06 15:15:11 +00:00
Michael Albinus
7253ac496d * NEWS: Add socks.el as new package. 2007-06-05 05:09:16 +00:00
Thien-Thi Nguyen
6ee20a68d8 (Hideshow): Delete.
(EDB, Go in a buffer): Update urls.
2007-06-02 12:23:08 +00:00
Chong Yidong
7dfc4cda5d Version 22.1 released. 2007-06-02 11:07:00 +00:00
Chong Yidong
9e38fa7e7d * MORE.STUFF: Remove dead URL for Fortune, and update URLs for
Hideshow, Org, EDB, and Remember.
2007-06-02 11:02:07 +00:00
Glenn Morris
73187b2613 Robert J. Chassell <bob at rattlesnake.com>
Fix instances of `allow' without object.
2007-05-29 00:47:12 +00:00
Glenn Morris
afef5edea8 Robert J. Chassell <bob at rattlesnake.com>
Fix instances of `allow' without object.
2007-05-29 00:44:34 +00:00
Glenn Morris
782f8379b9 Move NEWS for Emacs 22 into a new file. 2007-05-22 06:16:37 +00:00
Glenn Morris
06157c5be5 Convert from PPM to PBM. 2007-05-19 05:06:40 +00:00
Glenn Morris
3877988d3f (Dumping): Mention OpenBSD macppc problem. 2007-05-17 07:59:21 +00:00
Glenn Morris
06f7863ce6 *** empty log message *** 2007-05-17 07:58:03 +00:00
Michaël Cadilhac
197bc1746c Regenerate. 2007-05-15 01:19:14 +00:00
Michaël Cadilhac
021fc1e30b Regenerate. 2007-05-15 01:16:37 +00:00
Richard M. Stallman
80012aeb1c *** empty log message *** 2007-05-12 16:59:34 +00:00
Michaël Cadilhac
d0d8a6579e (viperCard.ps, calccard.ps refcard.ps)
(sk-dired-ref.ps sk-refcard.ps sk-survival.ps)
(de-refcard.ps fr-refcard.ps pt-br-refcard.ps orgcard.ps): Use an explicit
output argument for `dvips'.
2007-05-12 14:27:34 +00:00
Glenn Morris
2aaacad4c7 *** empty log message *** 2007-05-05 22:39:13 +00:00
Glenn Morris
b409bcaf0b *** empty log message *** 2007-04-28 20:39:52 +00:00
Glenn Morris
5fed56d6da Restore python.el pending consideration of legal status. 2007-04-28 20:17:17 +00:00
Glenn Morris
e40e449f41 *** empty log message *** 2007-04-25 05:53:28 +00:00
Glenn Morris
78290f509e Yavor Doganov <yavor at gnu.org> (tiny change)
Escape some minus signs.
2007-04-25 05:46:33 +00:00
Chong Yidong
bbf6b0ba07 * emacs.py: File removed due to unclear legal issues. 2007-04-24 02:08:04 +00:00
Glenn Morris
ac8fa58f14 (EMACS): This change was reverted, so delete this entry. 2007-04-22 20:19:42 +00:00
Glenn Morris
211fb124ea *** empty log message *** 2007-04-19 17:07:43 +00:00
David Kastrup
fc6a22502e * NEWS: Mention `query-replace-regexp-eval' being deprecated.
* replace.el (query-replace-regexp-eval): Deprecate.
2007-04-17 23:24:13 +00:00
Glenn Morris
c98b464fc2 *** empty log message *** 2007-04-15 01:34:35 +00:00
Glenn Morris
19608e4254 *** empty log message *** 2007-04-14 19:33:32 +00:00
Glenn Morris
1ed5afd9e4 *** empty log message *** 2007-04-14 02:36:44 +00:00
Glenn Morris
fc6ee824d1 *** empty log message *** 2007-04-13 03:00:36 +00:00
Glenn Morris
178b60d7ee Fix typos. emacserver is removed. 2007-04-13 02:59:17 +00:00
Stefan Monnier
ade817bdf2 (format_exception): New function.
(eexecfile): Use it instead of traceback.print_exception.
Don't use execfile to avoid a bug in w32.
2007-04-04 14:48:47 +00:00
Glenn Morris
2c0b72db4e *** empty log message *** 2007-04-04 03:01:10 +00:00
Eli Zaretskii
b49b513704 *** empty log message *** 2007-04-03 10:12:07 +00:00
Miles Bader
ff59d266c7 Release ERC 5.2.
I have updated the version of ERC to 5.2, since it fixes a bug with C-c
C-SPC being bound globally by default.  For the full list of changes in
this version, see etc/ERC-NEWS.

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-687
Creator:  Michael Olson <mwolson@gnu.org>
2007-04-01 13:36:38 +00:00
Michael Albinus
dc13f3f55c * PROBLEMS: Remove Tramp problem; it has been fixed. 2007-03-31 18:39:26 +00:00
Eli Zaretskii
89a4f43fac *** empty log message *** 2007-03-31 10:18:38 +00:00
Juanma Barranquero
7315c8d949 *** empty log message *** 2007-03-29 09:37:36 +00:00