aboutsummaryrefslogtreecommitdiffstats
path: root/encoding.c
Commit message (Expand)AuthorAgeFilesLines
* * encoding.c (rb_ascii_encoding): renamed from previousmatz2007-12-211-2/+2
* * encoding.c (rb_enc_replicate): now creates first class encoding.nobu2007-12-211-13/+57
* * encoding.c (Init_Encoding): use enc_name as to_s.akr2007-12-211-4/+4
* * io.c (rb_io_s_read): allow specifying encoding explicitly.matz2007-12-211-1/+4
* * encoding.c (rb_enc_init): use enc_register_at() directly.nobu2007-12-211-5/+23
* * encoding.c (rb_to_encoding_index): should return error instead ofnobu2007-12-211-0/+3
* * encoding.c (rb_enc_find_index): extension libraries have lower casenobu2007-12-211-0/+1
* * encoding.c (rb_enc_register): set encoding constant.nobu2007-12-211-3/+14
* * io.c (rb_io_external_encoding): new method.matz2007-12-211-1/+1
* * encoding.c (rb_locale_charmap): return nil if no locale information.akr2007-12-211-1/+1
* * configure.in: check langinfo.h and locale.h.akr2007-12-211-0/+6
* * encoding.c: include locale.hakr2007-12-211-0/+10
* * common.mk (enc.mk): depends on $(RBCONFIG) instead of rbconfig.rb.nobu2007-12-211-3/+0
* * string.c (rb_str_index): check if substring is broken.matz2007-12-171-1/+2
* * configure.in (enc/Makefile): add external encoding objects list.nobu2007-12-151-2/+22
* * encoding.c (rb_enc_register, rb_enc_replicate, rb_enc_alias): checknobu2007-12-151-10/+48
* * encoding.c (rb_enc_compatible): 1st argument (typically thematz2007-12-131-1/+1
* * encoding.c (rb_enc_compatible): encoding should never fall backmatz2007-12-131-1/+4
* * encoding.c (enc_get_encoding): removed.nobu2007-12-131-10/+0
* * encoding.c (rb_enc_compatible): should swap encoding indexes too.nobu2007-12-131-0/+3
* * encoding.c (rb_enc_compatible): should not judge compatibilitymatz2007-12-131-6/+0
* * encoding.c (rb_enc_ascget): renamed from rb_enc_get_ascii.akr2007-12-111-1/+1
* * encoding.c (rb_enc_get_ascii): add an argument to provide the akr2007-12-111-5/+9
* * encoding.c (rb_enc_precise_mbclen): return needmore if underlyingakr2007-12-081-1/+5
* * encoding.c (rb_enc_mbclen): return 1 if underlying implementationakr2007-12-081-1/+2
* * encoding.c (rb_enc_mbclen): make it never fail.akr2007-12-081-7/+25
* * encoding.c (rb_enc_precise_mbclen): new function for mbclen withakr2007-12-061-0/+6
* * encoding.c: rename primary_encoding -> default_external (encoding).matz2007-12-011-12/+12
* * include/ruby/encoding.h, encoding.c, re.c, string.c, parse.y: akr2007-11-271-4/+4
* * encoding.c (enc_check_encoding, rb_set_primary_encoding): ENCODINGnobu2007-11-091-4/+2
* * test/ruby/test_basicinstructions.rb: updated for new classmatz2007-11-091-7/+5
* * string.c (tr_setup_table): use C array for characters that fitmatz2007-11-031-1/+1
* * encoding.c (rb_enc_replicate): new function to replicate encoding.nobu2007-10-291-15/+62
* * encoding.c (rb_enc_compatible): ASCII encoding is compatible withnobu2007-10-291-0/+5
* * encoding.c (rb_to_encoding_index, rb_to_encoding): commit miss.nobu2007-10-221-3/+2
* * encoding.c (enc_check_encoding): returns index now.nobu2007-10-221-12/+15
* * encoding.c (rb_enc_compatible): check if two objects have compatiblenobu2007-10-221-1/+21
* * encoding.c (rb_enc_default, rb_enc_primary): return pointers tonobu2007-10-211-12/+19
* * encoding.c (rb_id_encoding): returns ID "encoding".nobu2007-10-191-8/+11
* * encoding.c (rb_enc_from_encoding, rb_enc_register): associate indexnobu2007-10-171-3/+11
* * encoding.c (rb_enc_alias, rb_enc_find_index): changednobu2007-10-161-11/+68
* * encoding.c (enc_list): seems a commit miss.nobu2007-10-161-1/+0
* * encoding.c (rb_primary_encoding): added Encoding.primary_encoding.nobu2007-10-161-5/+37
* * encoding.c (enc_to_s): rename function.matz2007-10-161-3/+3
* * encoding.c (Init_Encoding): define #to_s to show encoding namematz2007-10-151-0/+1
* * encoding.c (rb_obj_encoding): rdoc update. a patch from Davidnobu2007-10-141-4/+23
* * encoding.c (rb_cEncoding): new Encoding class.nobu2007-10-131-6/+153
* * encoding.c (rb_enc_init): don't alias iso-8859-1 to ascii.akr2007-10-101-4/+4
* * encoding.c (rb_enc_register): returns new index or -1 if failed.nobu2007-10-061-9/+25
* * encoding.c (rb_obj_encoding): returns encoding of the given object.nobu2007-10-041-0/+14