XEmacs-21.4.13 (한글 Mule된 윈도우즈 버젼)

최근에 한국 파이썬 유져즈의 wholee님 글을 보고
 
한글 입력 및 인코딩 변경을 성공시킨 XEmacs입니다.

뭐 다른 분들도 위의 글을 보시고 따라하셔도 되지만,

저처럼 몇번의 시행착오를 거치기 귀찮으신 분은 받아다가 쓰세요...

언어 설정 init.el 리습은 다음과 같습니다.

(set-language-environment 'korean)
(setq default-input-method 'korean-hangul)
(prefer-coding-system 'euc-kr)


ps)
단점이 있는데 한글 폰트나 크기가 변경이 안되는군요...
혹 방법을 아시는 분이 계시면 코멘트나 트랙백 부탁드립니다.
Tag // mule, xemacs, 한글

테스트 화면은 XEmacs 최신 버젼이다.

일단 원하는 파일을 열고,

M-x htmlize-file

을 입력한다.

이외에도 htmlize-many-files나 htmlize-region, htmlize-buffer, htmlize-many-files-dired ... 이 있다.

다음은 -_- 노마제 테마의 소스 코드를 HTML로 출력한 것이다.

/**
* Floater used both for display of group information and for
* creating new groups.
*
* Help, I'm trapped in a software factory!
*/


#include "llviewerprecompiledheaders.h"

#include "llfloatergroupinfo.h"

#include "llagent.h"
#include "llcachename.h"
#include "llpanelgroup.h"
#include "llviewermessage.h" // for inventory_offer_callback


const char FLOATER_TITLE[] = "Group Information";
const LLRect FGI_RECT(0, 530, 420, 0);

//
// Globals
//
std::map<LLUUID, LLFloaterGroupInfo*> LLFloaterGroupInfo::sInstances;

//-----------------------------------------------------------------------------
// Implementation
//-----------------------------------------------------------------------------
LLFloaterGroupInfo::LLFloaterGroupInfo(const std::string& name, const LLRect &rect, const std::string& title, const LLUUID& group_id, const std::string& tab_name)
:       LLFloater(name, rect, title),
        mGroupID( group_id )
{
        // Construct the filename of the group panel xml definition file.
        mPanelGroupp = new LLPanelGroup("panel_group.xml",
                                                                        "PanelGroup",
                                                                        group_id,
                                                                        tab_name);
        addChild(mPanelGroupp);
}
Tag // emacs, HTML, xemacs